]> git.mxchange.org Git - core.git/commitdiff
Opps...
authorRoland Häder <roland@mxchange.org>
Mon, 4 Apr 2011 23:09:01 +0000 (23:09 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 4 Apr 2011 23:09:01 +0000 (23:09 +0000)
inc/classes/main/class_BaseFrameworkSystem.php

index db8d9776e79de2c89de69da25e8385afaba929d1..c5b4ebe06a81c7077c2046dc99c9e3d0c00f3a9a 100644 (file)
@@ -1616,7 +1616,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Decode the hexadecimal string into a decimal number
                $dec = 0;
                for ($i = strlen($hex) - 1, $e = 1; $i >= 0; $i--, $e = bcmul($e, 16)) {
                // Decode the hexadecimal string into a decimal number
                $dec = 0;
                for ($i = strlen($hex) - 1, $e = 1; $i >= 0; $i--, $e = bcmul($e, 16)) {
-                       $factor = self:$hexdec[substr($hex, $i, 1)];
+                       $factor = self::$hexdec[substr($hex, $i, 1)];
                        $dec = bcadd($dec, bcmul($factor, $e));
                } // END - for
 
                        $dec = bcadd($dec, bcmul($factor, $e));
                } // END - for
 
@@ -1645,7 +1645,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Encode the decimal number into a hexadecimal string
                $hex = '';
                do {
                // Encode the decimal number into a hexadecimal string
                $hex = '';
                do {
-                       $hex = self:$dechex[($dec % 16)] . $hex;
+                       $hex = self::$dechex[($dec % 16)] . $hex;
                        $dec /= 16;
                } while ($dec >= 1);
 
                        $dec /= 16;
                } while ($dec >= 1);