Feature 1241 : revert pwg_db_fetch_row because we use $row[0]

git-svn-id: http://piwigo.org/svn/trunk@4335 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou 2009-11-21 21:05:22 +00:00
parent ce3fe0d460
commit 96aa29d484

View file

@ -393,7 +393,7 @@ function do_maintenance_all_tables()
// List all tables
$query = 'SHOW TABLES LIKE \''.$prefixeTable.'%\'';
$result = pwg_query($query);
while ($row = pwg_db_fetch_assoc($result))
while ($row = pwg_db_fetch_row($result))
{
array_push($all_tables, $row[0]);
}