diff options
author | rub <rub@piwigo.org> | 2007-06-21 20:49:45 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-06-21 20:49:45 +0000 |
commit | ebf2bba815c76a661d686e069ed9fce79d5a2030 (patch) | |
tree | e2794858759939d91909c6b9c66de5c0d9503fa0 /admin/site_update.php | |
parent | abb62a97e2df28674e433867753e511098039c2a (diff) |
Resolved issue 0000708: Error on synchronization
Resolved issue 0000709: Error with $conf['default_admin_layout']
git-svn-id: http://piwigo.org/svn/trunk@2038 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/site_update.php')
-rw-r--r-- | admin/site_update.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/admin/site_update.php b/admin/site_update.php index 96d4e78b9..7e83d62fb 100644 --- a/admin/site_update.php +++ b/admin/site_update.php @@ -4,8 +4,7 @@ // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ -// | branch : BSF (Best So Far) -// | file : $RCSfile$ +// | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ // | revision : $Revision$ @@ -127,15 +126,20 @@ if (isset($_POST['submit'])) // | directories / categories | // +-----------------------------------------------------------------------+ if (isset($_POST['submit']) - and ($_POST['sync'] == 'dirs' or $_POST['sync'] == 'files') - and !$general_failure) + and ($_POST['sync'] == 'dirs' or $_POST['sync'] == 'files')) { $counts['new_categories'] = 0; $counts['del_categories'] = 0; $counts['del_elements'] = 0; $counts['new_elements'] = 0; $counts['upd_elements'] = 0; +} + +if (isset($_POST['submit']) + and ($_POST['sync'] == 'dirs' or $_POST['sync'] == 'files') + and !$general_failure) +{ $start = get_moment(); // which categories to update ? $cat_ids = array(); |