Wed 18th Apr '07 8:00am
|
 |
vBulletin Team
|
|
|
Error on importing attachments IPB 1.2
ImpEx: 1.80
Source: IPB 1.2
Module: 012 - Import attachment
script tries to process 1 more element then the array holds.
012.php, line ~120:
PHP Code:
while($i <= count($counter))
To:
PHP Code:
while($i < count($counter))
Or even better:
PHP Code:
$attachcount = count($filename); while($i < $attachcount)
|