Bug 1715 fixed : SQLite: Add photos fail
must use pwg_db_* functions instead of mysql_* ones merge from trunk git-svn-id: http://piwigo.org/svn/branches/2.1@6499 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
de5ded6fa2
commit
47847a2dd4
2 changed files with 4 additions and 4 deletions
|
@ -26,7 +26,7 @@ function add_uploaded_file($source_filepath, $original_filename=null, $categorie
|
|||
global $conf;
|
||||
|
||||
// current date
|
||||
list($dbnow) = mysql_fetch_row(pwg_query('SELECT NOW();'));
|
||||
list($dbnow) = pwg_db_fetch_row(pwg_query('SELECT NOW();'));
|
||||
list($year, $month, $day) = preg_split('/[^\d]/', $dbnow, 4);
|
||||
|
||||
// upload directory hierarchy
|
||||
|
@ -120,7 +120,7 @@ function add_uploaded_file($source_filepath, $original_filename=null, $categorie
|
|||
array($insert)
|
||||
);
|
||||
|
||||
$image_id = mysql_insert_id();
|
||||
$image_id = pwg_db_insert_id();
|
||||
|
||||
if (isset($categories) and count($categories) > 0)
|
||||
{
|
||||
|
|
|
@ -237,7 +237,7 @@ SELECT
|
|||
FROM '.IMAGES_TABLE.'
|
||||
WHERE id = '.$image_id.'
|
||||
;';
|
||||
$image_infos = mysql_fetch_assoc(pwg_query($query));
|
||||
$image_infos = pwg_db_fetch_assoc(pwg_query($query));
|
||||
|
||||
$thumbnail['file'] = $image_infos['file'];
|
||||
|
||||
|
@ -297,7 +297,7 @@ SELECT
|
|||
FROM '.IMAGE_CATEGORY_TABLE.'
|
||||
WHERE category_id = '.$category_id.'
|
||||
;';
|
||||
list($count) = mysql_fetch_row(pwg_query($query));
|
||||
list($count) = pwg_db_fetch_row(pwg_query($query));
|
||||
$category_name = get_cat_display_name_from_id($category_id, 'admin.php?page=cat_modify&cat_id=');
|
||||
|
||||
// information
|
||||
|
|
Loading…
Add table
Reference in a new issue