diff options
author | plegall <plg@piwigo.org> | 2010-10-13 09:43:18 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-10-13 09:43:18 +0000 |
commit | 00ebefc966fc8e469f6f59b9c1347254bfc17557 (patch) | |
tree | 4237ddf2021eda9df581e81d4f5aef4d54a1944d /admin | |
parent | ac818f11e0e06bf356b3767fafe72a6c0238bb51 (diff) |
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
Diffstat (limited to 'admin')
-rw-r--r-- | admin/include/functions_upload.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions_upload.inc.php b/admin/include/functions_upload.inc.php index bfd5d5107..8fcfac4f0 100644 --- a/admin/include/functions_upload.inc.php +++ b/admin/include/functions_upload.inc.php @@ -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) { |