From 33559103ddf02648837c85ed72425ac06c06080c Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Mon, 2 Feb 2009 18:50:38 +0000 Subject: replaced all sizeof() in favor of count() - aliases are teh sux0r --- system/libraries/Sha1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries/Sha1.php') diff --git a/system/libraries/Sha1.php b/system/libraries/Sha1.php index 93982bfc4..cc6e2123f 100644 --- a/system/libraries/Sha1.php +++ b/system/libraries/Sha1.php @@ -80,7 +80,7 @@ class CI_SHA { $d = 271733878; $e = -1009589776; - for ($i = 0; $i < sizeof($x); $i += 16) + for ($i = 0; $i < count($x); $i += 16) { $olda = $a; $oldb = $b; -- cgit v1.2.3-24-g4f1b