X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=Uplink%2FNumerics.class.php;h=87cb6426f191b65bb67742ef8b96ebf434313ad5;hp=01944dcb9aa6d42776c97e38593287fcc10fefb0;hb=55c45ccc4c5422ddd9ca3bb8840b5e75aa4184bc;hpb=d366927546c9ab2a52f6f87cf96aa3a4e6fd5cbb diff --git a/Uplink/Numerics.class.php b/Uplink/Numerics.class.php index 01944dc..87cb642 100644 --- a/Uplink/Numerics.class.php +++ b/Uplink/Numerics.class.php @@ -50,9 +50,6 @@ class Numerics { private static $base64charsLength = 64; public static function intToNum($int, $length) { - //fix a small "bug": normaly 0 = AAAAA but we need 1 = AAAAA - $int = $int - 1; - $numeric = ""; for($pos = $length-1; $pos >= 0; $pos--) { //current position represents floor($int / ($base64charsLength ^ $pos)) @@ -77,10 +74,6 @@ class Numerics { $int = ($posValue * $base); $base = $base * self::$base64charsLength; } - - //fix a small "bug": normaly 0 = AAAAA but we need 1 = AAAAA - $int = $int + 1; - return $int; }