commit | 33559103ddf02648837c85ed72425ac06c06080c | [log] [tgz] |
---|---|---|
author | Derek Jones <derek.jones@ellislab.com> | Mon Feb 02 18:50:38 2009 +0000 |
committer | Derek Jones <derek.jones@ellislab.com> | Mon Feb 02 18:50:38 2009 +0000 |
tree | be00fd757f97298f3e74a43c4eb067b729fb4af0 | |
parent | f1b721a3559e8eb95bc580a3f79c5c2e896c9932 [diff] [blame] |
replaced all sizeof() in favor of count() - aliases are teh sux0r
diff --git a/system/libraries/Sha1.php b/system/libraries/Sha1.php index 93982bf..cc6e212 100644 --- a/system/libraries/Sha1.php +++ b/system/libraries/Sha1.php
@@ -80,7 +80,7 @@ $d = 271733878; $e = -1009589776; - for ($i = 0; $i < sizeof($x); $i += 16) + for ($i = 0; $i < count($x); $i += 16) { $olda = $a; $oldb = $b;