From c1d6177df9ebb853217958d91aba26f35f66a497 Mon Sep 17 00:00:00 2001 From: nikrou Date: Mon, 15 Feb 2010 19:49:04 +0000 Subject: Feature 1255 : update pwg_db_insert_id() function. PosgreSQL needs table name to retrieve last insert auto increment id. git-svn-id: http://piwigo.org/svn/trunk@4892 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/history.php | 4 ++-- admin/include/functions.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'admin') diff --git a/admin/history.php b/admin/history.php index 86014fc7b..b0022b902 100644 --- a/admin/history.php +++ b/admin/history.php @@ -136,7 +136,7 @@ INSERT INTO '.SEARCH_TABLE.' ;'; pwg_query($query); - $search_id = pwg_db_insert_id(); + $search_id = pwg_db_insert_id(SEARCH_TABLE); redirect( PHPWG_ROOT_PATH.'admin.php?page=history&search_id='.$search_id @@ -198,7 +198,7 @@ INSERT INTO '.SEARCH_TABLE.' ;'; pwg_query($query); - $search_id = pwg_db_insert_id(); + $search_id = pwg_db_insert_id(SEARCH_TABLE); redirect( PHPWG_ROOT_PATH.'admin.php?page=history&search_id='.$search_id diff --git a/admin/include/functions.php b/admin/include/functions.php index d77b2cb81..5cfbf94f0 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1254,7 +1254,7 @@ SELECT id, uppercats, global_rank, visible, status array($insert) ); - $inserted_id = pwg_db_insert_id(); + $inserted_id = pwg_db_insert_id(CATEGORIES_TABLE); $query = ' UPDATE @@ -1387,7 +1387,7 @@ SELECT id ) ); - $page['tag_id_from_tag_name_cache'][$tag_name] = pwg_db_insert_id(); + $page['tag_id_from_tag_name_cache'][$tag_name] = pwg_db_insert_id(TAGS_TABLE); } else { @@ -1662,7 +1662,7 @@ SELECT id ) ); - $inserted_id = pwg_db_insert_id(); + $inserted_id = pwg_db_insert_id(TAGS_TABLE); return array( 'info' => sprintf( -- cgit v1.2.3