static prefix added to really static lock and unlock _data function definitions
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 19 May 2011 16:40:14 +0000 (18:40 +0200)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 19 May 2011 16:43:08 +0000 (18:43 +0200)
web/Obj/auth.phh
web/Obj/brisk.phh
web/Obj/hardban.phh
web/briskin5/Obj/briskin5.phh

index 0615388..00add0c 100644 (file)
@@ -244,7 +244,7 @@ class Challenges {
         return (FALSE);
     }
 
-    function lock_data()
+    static function lock_data()
     {
         if (($tok = @ftok(FTOK_PATH."/challenges", "B")) == -1) {
             return (FALSE);
@@ -262,7 +262,7 @@ class Challenges {
             return (FALSE);
     }
   
-    function unlock_data($res)
+    static function unlock_data($res)
     {
         GLOBAL $sess; 
     
index 7fc7582..8b12641 100644 (file)
@@ -3047,7 +3047,7 @@ function sharedmem_sz($tok)
 class Warrant {
     static $delta_t;
 
-  function lock_data()
+  static function lock_data()
   {
     GLOBAL $sess; 
     
@@ -3067,7 +3067,7 @@ class Warrant {
       return (FALSE);
   }
   
-  function unlock_data($res)
+  static function unlock_data($res)
   {
     GLOBAL $sess; 
     
@@ -3080,7 +3080,7 @@ class Warrant {
 class Poll {
     static $delta_t;
 
-  function lock_data()
+    static function lock_data()
   {
     GLOBAL $sess; 
     
@@ -3101,7 +3101,7 @@ class Poll {
       return (FALSE);
   }
   
-  function unlock_data($res)
+  static function unlock_data($res)
   {
     GLOBAL $sess; 
     
index e26fc4c..e2eeaba 100644 (file)
@@ -238,7 +238,7 @@ class Hardbans {
     return (FALSE);
   }
 
-  function lock_data()
+  static function lock_data()
   {
     if (($tok = @ftok(FTOK_PATH."/hardbans", "B")) == -1) {
       return (FALSE);
@@ -256,7 +256,7 @@ class Hardbans {
       return (FALSE);
   }
   
-  function unlock_data($res)
+  static function unlock_data($res)
   {
     GLOBAL $sess; 
     
index fffd692..99bdc1e 100644 (file)
@@ -992,7 +992,7 @@ class Bin5 {
     return ($ret);
   }
 
-  function lock_data($table_idx)
+  static function lock_data($table_idx)
   {
     GLOBAL $sess; 
     
@@ -1019,7 +1019,7 @@ class Bin5 {
     }
   }
   
-  function unlock_data($res_vect)
+  static function unlock_data($res_vect)
   {
     GLOBAL $sess;