[Ircphpstats-devel] [CVS] Module phpstats: Change committed
Status: Inactive
Brought to you by:
mrvolta
From: Mr. v. <mr...@us...> - 2003-04-27 10:48:42
|
Committer : volta <mr...@us...> CVSROOT : /cvsroot/ircphpstats Module : phpstats Commit time: 2003-04-27 10:48:41 UTC Modified files: handlers/burst.php Log message: Fixed 2 typos (thanks to wasted) ---------------------- diff included ---------------------- Index: phpstats/handlers/burst.php diff -u phpstats/handlers/burst.php:1.2 phpstats/handlers/burst.php:1.3 --- phpstats/handlers/burst.php:1.2 Tue Mar 18 10:15:52 2003 +++ phpstats/handlers/burst.php Sun Apr 27 03:48:30 2003 @@ -45,8 +45,8 @@ $keyed = false; $limited = false; foreach($modes as $key => $val) { - if ($val == "k") { $keyed = true; countinue; }; - if ($val == "l") { $limited = true; countinue; }; + if ($val == "k") { $keyed = true; continue; }; + if ($val == "l") { $limited = true; continue; }; }; ----------------------- End of diff ----------------------- |