Fixed a bug which resulted in an infinite loop when all messages were deleted.
If you already applied the mod, please reaply this step:
in viewmessages.php
Old code:
Code:
#### Search for:
$i = 0;
#### Insert before:
$numpms = $dbh->total_rows($sth);
if ($numpms == 0 && $page > 0){
$page = ceil($nums/$PostsPer)-1;
}
}while ($numpms == 0);
.........
.........
.........
New code:
Code:
$numpms = $dbh->total_rows($sth);
$reloop = 0;
if ($numpms == 0 && $page > 0){
$page = ceil($nums/$PostsPer)-1;
$reloop = 1;
}
}while ($reloop == 1);
.........
.........
.........
I uploaded the new version in the attachemnt of the first post.
--------------------
The Rich Jerk
Google Cash
Subforums for UBBThreads
Fungifun