NOISSUE, trivial code change

This commit is contained in:
ngleader 2013-11-25 21:26:40 +09:00
parent f8af9ef6ce
commit 34c7b68c89
7 changed files with 8 additions and 13 deletions

View file

@ -210,7 +210,7 @@ if(!class_exists('AddonCaptcha'))
}
// Combine images of each character
for($i = 1; $i < count($im); $i++)
for($i = 1, $c = count($im); $i<$c; $i++)
{
imagecopy($im[0], $im[$i], (($w + 2) * ($i - 1)), 0, 0, 0, $w, $h);
imagedestroy($im[$i]);