mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-28 12:19:57 +03:00
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:
parent
ce3fe0d460
commit
96aa29d484
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ function do_maintenance_all_tables()
|
||||||
// List all tables
|
// List all tables
|
||||||
$query = 'SHOW TABLES LIKE \''.$prefixeTable.'%\'';
|
$query = 'SHOW TABLES LIKE \''.$prefixeTable.'%\'';
|
||||||
$result = pwg_query($query);
|
$result = pwg_query($query);
|
||||||
while ($row = pwg_db_fetch_assoc($result))
|
while ($row = pwg_db_fetch_row($result))
|
||||||
{
|
{
|
||||||
array_push($all_tables, $row[0]);
|
array_push($all_tables, $row[0]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue