falsche Debug-Meldungen korrigiert.
authorBernd Blessmann <bibi@online.de>
Tue, 1 Jun 2010 08:35:57 +0000 (10:35 +0200)
committerBernd Blessmann <bibi@online.de>
Tue, 1 Jun 2010 08:35:57 +0000 (10:35 +0200)
leave_sub statt enter_sub.

SL/Auth.pm

index 4b6f2fa..72e3697 100644 (file)
@@ -829,7 +829,7 @@ sub evaluate_rights_ary {
     }
   }
 
-  $main::lxdebug->enter_sub(2);
+  $main::lxdebug->leave_sub(2);
 
   return $value;
 }
@@ -863,7 +863,7 @@ sub _parse_rights_string {
       pop @stack;
 
       if (!@stack) {
-        $main::lxdebug->enter_sub(2);
+        $main::lxdebug->leave_sub(2);
         return 0;
       }
 
@@ -879,7 +879,7 @@ sub _parse_rights_string {
 
   my $result = ($access || (1 < scalar @stack)) ? 0 : evaluate_rights_ary($stack[0]);
 
-  $main::lxdebug->enter_sub(2);
+  $main::lxdebug->leave_sub(2);
 
   return $result;
 }