Skip to content

Commit

Permalink
MDL-14129 fixed undefined $i variable
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Jun 15, 2008
1 parent 2bc95e1 commit 633c334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/chat/lib.php
Expand Up @@ -24,7 +24,7 @@

function produce_data($n){
$str = '';
for($i; $i<$n; $i++){
for($i=0; $i<$n; $i++){
$str.='<!-- nix -->\n';
}
return $str;
Expand Down

0 comments on commit 633c334

Please sign in to comment.