Error on importing attachments IPB 1.2 Issue Tools
issueid=21871 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
Issue Details
Project ImpEx
Category Unknown
Status Fixed (Closed)
Priority Unknown
Affected Version Unknown
Fixed Version (none)
Users able to reproduce bug 0
Users unable to reproduce bug 0
Assigned Users (none)
Tags (none)

Tue 24th Apr '07 3:10pm
ImpEx Developer
 
In 1.81
Reply
Reply