From 58977351dd282cd14b53bbf04494acbddc185900 Mon Sep 17 00:00:00 2001 From: patdenice Date: Mon, 1 Oct 2007 15:46:04 +0000 Subject: 0000749: Add an option to add new elements to caddie when synchronize database. Add a redirection on index.php after "add to caddie action" (like on picture.php) git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2113 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/site_update.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'admin') diff --git a/admin/site_update.php b/admin/site_update.php index 7e83d62fb..2c3a4eebe 100644 --- a/admin/site_update.php +++ b/admin/site_update.php @@ -485,6 +485,8 @@ SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1) AS next_element_id 'info' => l10n('update_research_added') ) ); + + $caddiables[] = $insert['id']; } else { @@ -530,6 +532,8 @@ SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1) AS next_element_id 'info' => l10n('update_research_added') ) ); + + $caddiables[] = $insert['id']; } } @@ -550,6 +554,12 @@ SELECT IF(MAX(id)+1 IS NULL, 1, MAX(id)+1) AS next_element_id array_keys($insert_links[0]), $insert_links ); + + // add new elements to caddie + if (isset($_POST['add_to_caddie']) and $_POST['add_to_caddie'] == 1) + { + fill_caddie($caddiables); + } } $counts['new_elements'] = count($inserts); } @@ -959,6 +969,12 @@ if (!isset($_POST['submit']) or (isset($simulate) and $simulate)) array('DISPLAY_INFO_CHECKED'=>'checked="checked"')); } + if (isset($_POST['add_to_caddie']) and $_POST['add_to_caddie'] == 1) + { + $template->assign_vars( + array('ADD_TO_CADDIE_CHECKED'=>'checked="checked"')); + } + if (isset($_POST['subcats-included']) and $_POST['subcats-included'] == 1) { $template->assign_vars( -- cgit v1.2.3