GroupRights.php
[Pman.Admin] / GroupRights.php
index 6baf3ea..d92a547 100644 (file)
@@ -97,7 +97,8 @@ class Pman_Admin_GroupRights extends Pman
         if (!isset($_POST['group_id']) || (int)$_POST['group_id'] < 0) {
             $this->jerr("NO GROUP");
         }
-        if (!$this->hasPerm( 'Core.Groups','E')) { // editing groups..
+        
+        if (!$this->checkPerm('Core.Groups','E')) { // editing groups..
             $this->jerr("PERMISSION DENIED");
         }
         
@@ -136,9 +137,10 @@ class Pman_Admin_GroupRights extends Pman
         
         
     }
-     
-    
-    
     
+    function checkPerm($lvl, $au)
+    {
+        return $au->hasPerm("Core.Groups", $lvl);
+    }
     
 }
\ No newline at end of file