From 7def408c77f3d840453fa64e94374729b5e979c5 Mon Sep 17 00:00:00 2001 From: Barry Oosthuizen Date: Tue, 22 Sep 2015 16:47:21 +0100 Subject: [PATCH] Fix #155: Hiding statuses removes them from Settings --- preferences.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preferences.php b/preferences.php index 4efc0f4..91f10f3 100644 --- a/preferences.php +++ b/preferences.php @@ -100,9 +100,9 @@ switch ($att->pageparams->action) { echo $OUTPUT->footer(); exit; case att_preferences_page_params::ACTION_HIDE: - $statuses = $att->get_statuses(); $status = $statuses[$att->pageparams->statusid]; $att->update_status($status, null, null, null, 0); + $statuses = $att->get_statuses(false); break; case att_preferences_page_params::ACTION_SHOW: $statuses = $att->get_statuses(false);