merge r7169 from branch 2.1 to trunk

bug 1914 fixed: broken admin web upload with PostgreSQL as database engine.
The tablename to retrieve the inserted image is mandatory for PostgreSQL and
was missing. Patch by netzimme.



git-svn-id: http://piwigo.org/svn/trunk@7170 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2010-10-13 09:43:18 +00:00
parent ac818f11e0
commit 00ebefc966

View file

@ -130,7 +130,7 @@ function add_uploaded_file($source_filepath, $original_filename=null, $categorie
array($insert)
);
$image_id = pwg_db_insert_id();
$image_id = pwg_db_insert_id(IMAGES_TABLE);
if (isset($categories) and count($categories) > 0)
{