Revision: 18970
          
http://svn.sv.gnu.org/viewvc/?view=rev&root=phpgroupware&revision=18970
Author:   maat
Date:     2008-10-25 18:13:31 +0000 (Sat, 25 Oct 2008)

Log Message:
-----------
fix : made hex2bin method static because it's called using  
phpgwapi_common::hex2bin in class.auth_.inc.php

Modified Paths:
--------------
    core/trunk/phpgwapi/inc/class.common.inc.php

Modified: core/trunk/phpgwapi/inc/class.common.inc.php
===================================================================
--- core/trunk/phpgwapi/inc/class.common.inc.php        2008-10-25 18:07:05 UTC 
(rev 18969)
+++ core/trunk/phpgwapi/inc/class.common.inc.php        2008-10-25 18:13:31 UTC 
(rev 18970)
@@ -1130,7 +1130,7 @@
                * @param string $data hexidecimal data as a string
                * @return string binary value of $data;
                */
-               public function hex2bin($data)
+               static function hex2bin($data)
                {
                        $len = strlen($data);
                        return pack('H' . $len, $data);




_______________________________________________
phpGroupWare-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-cvs

Reply via email to