]> git.mjollnir.org Git - s9y.git/commitdiff
missing ) in functions_config.inc.php, I hate them too 8)
authorflotsam <flotsam>
Tue, 28 Jun 2005 21:12:25 +0000 (21:12 +0000)
committerflotsam <flotsam>
Tue, 28 Jun 2005 21:12:25 +0000 (21:12 +0000)
include/functions_config.inc.php

index 0a0ce241d30d88d1d72ca59bb4394a7b02cb2621..1a12e8409821dbf9670d77dc32fa5273862a3dd1 100644 (file)
@@ -700,7 +700,7 @@ function &serendipity_getAllGroups($apply_ACL_user = false) {
                                           FROM {$serendipity['dbPrefix']}groups AS g
                                       ORDER BY  g.name", false, 'assoc');
     }
-    if (is_array($groups) {
+    if (is_array($groups)) {
         foreach ($groups as $k => $v) {
             if ('USERLEVEL_' == substr($v['confvalue'], 0, 10)) {
                 $groups[$k]['confvalue'] = $groups[$k]['name'] = constant($v['confvalue']);