mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
Bug 1716 fixed : Check upgrades failed in intro
Incorrect use of database dependant functions. Fixed same problem for ws functions git-svn-id: http://piwigo.org/svn/trunk@6500 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -50,7 +50,7 @@ having count(*) > 1
|
||||
limit 0,1
|
||||
;';
|
||||
|
||||
if (mysql_fetch_array(pwg_query($query)))
|
||||
if (pwg_db_fetch_array(pwg_query($query)))
|
||||
{
|
||||
$to_deactivate = false;
|
||||
$c13y->add_anomaly(
|
||||
@@ -80,7 +80,7 @@ where
|
||||
;';
|
||||
|
||||
$result = pwg_query($query);
|
||||
while ($row = mysql_fetch_assoc($result))
|
||||
while ($row = pwg_db_fetch_assoc($result))
|
||||
{
|
||||
$to_deactivate = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user