Bug 1716 fixed : SQLite: Check upgrades failed in intro
Incorrect use of dependant database function Fixed same problem in ws functions merge from trunk git-svn-id: http://piwigo.org/svn/branches/2.1@6501 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
47847a2dd4
commit
a9774635bd
2 changed files with 5 additions and 5 deletions
|
@ -1143,7 +1143,7 @@ SELECT
|
||||||
FROM '.IMAGES_TABLE.'
|
FROM '.IMAGES_TABLE.'
|
||||||
WHERE id = '.$params['image_id'].'
|
WHERE id = '.$params['image_id'].'
|
||||||
;';
|
;';
|
||||||
list($file_path, $original_sum) = mysql_fetch_row(pwg_query($query));
|
list($file_path, $original_sum) = pwg_db_fetch_row(pwg_query($query));
|
||||||
|
|
||||||
// TODO only files added with web API can be updated with web API
|
// TODO only files added with web API can be updated with web API
|
||||||
|
|
||||||
|
@ -1712,10 +1712,10 @@ SELECT
|
||||||
WHERE id = '.$params['image_id'].'
|
WHERE id = '.$params['image_id'].'
|
||||||
;';
|
;';
|
||||||
$result = pwg_query($query);
|
$result = pwg_query($query);
|
||||||
if (mysql_num_rows($result) == 0) {
|
if (pwg_db_num_rows($result) == 0) {
|
||||||
return new PwgError(404, "image_id not found");
|
return new PwgError(404, "image_id not found");
|
||||||
}
|
}
|
||||||
list($path) = mysql_fetch_row($result);
|
list($path) = pwg_db_fetch_row($result);
|
||||||
|
|
||||||
$ret = array();
|
$ret = array();
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ having count(*) > 1
|
||||||
limit 0,1
|
limit 0,1
|
||||||
;';
|
;';
|
||||||
|
|
||||||
if (mysql_fetch_array(pwg_query($query)))
|
if (pwg_db_fetch_array(pwg_query($query)))
|
||||||
{
|
{
|
||||||
$to_deactivate = false;
|
$to_deactivate = false;
|
||||||
$c13y->add_anomaly(
|
$c13y->add_anomaly(
|
||||||
|
@ -80,7 +80,7 @@ where
|
||||||
;';
|
;';
|
||||||
|
|
||||||
$result = pwg_query($query);
|
$result = pwg_query($query);
|
||||||
while ($row = mysql_fetch_assoc($result))
|
while ($row = pwg_db_fetch_assoc($result))
|
||||||
{
|
{
|
||||||
$to_deactivate = false;
|
$to_deactivate = false;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue