From d128a46db8166d40055e625f9d5f3c41aba5101b Mon Sep 17 00:00:00 2001 From: skodak Date: Sat, 4 Jul 2009 16:31:33 +0000 Subject: [PATCH] fixed missing OUTPUT global regression --- admin/filters.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/filters.php b/admin/filters.php index 4ca0de8dae..24544b4e24 100644 --- a/admin/filters.php +++ b/admin/filters.php @@ -230,13 +230,13 @@ function action_url($filterpath, $action) { } function action_icon($url, $icon, $straction) { - global $CFG; + global $CFG, $OUTPUT; return '' . '' . $straction . ' '; } function get_table_row($filterinfo, $isfirstrow, $islastactive, $applytostrings) { - global $CFG, $activechoices, $applytochoices, $filternames; + global $CFG, $OUTPUT, $activechoices, $applytochoices, $filternames; $row = array(); $filter = $filterinfo->filter; -- 2.39.5