From 8f9272a4ff08eeb2b36d5c06b69ae6f2d1634d7f Mon Sep 17 00:00:00 2001 From: arborrow Date: Wed, 9 Apr 2008 19:04:54 +0000 Subject: [PATCH] fixing syntax error - missing { - introduced during last commit (revision 1.42) --- admin/filters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/filters.php b/admin/filters.php index 06ce1c88f5..411751fd69 100644 --- a/admin/filters.php +++ b/admin/filters.php @@ -52,7 +52,7 @@ case 'show': // check filterpath is valid - if (!array_key_exists($filterpath, $installedfilters)) + if (!array_key_exists($filterpath, $installedfilters)) { print_error('filternotinstalled', 'error', $url, $filterpath); } elseif (array_search($filterpath,$activefilters)) { // filterpath is already active - doubleclick?? -- 2.39.5