Carbonize wrote:It looks like it's a bug in PHP 4.4.1 and they have fixed it in the latest snapshots. The bug is to do with the reset() function when the variable passed to it is not an array. I will look at writing some code to check that the variable is an array first but it's hard for me to test as I only have access to PHP 4.3.11 and 5.x.
Your code worked!
Open up admin/panel_pwd.php and
find
for (reset($this->table); $key=key($this->table); next($this->table)) {
echo "- ".$this->table[$key]."<br>\n";
}
replace that with
reset($this->table);
foreach ($this->table as $tablename) {
echo "- ".$tablename."<br>\n";
}