From ebf2bba815c76a661d686e069ed9fce79d5a2030 Mon Sep 17 00:00:00 2001 From: rub Date: Thu, 21 Jun 2007 20:49:45 +0000 Subject: 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 --- admin/site_update.php | 12 ++++++++---- include/common.inc.php | 16 +++++++++++++++- include/functions_user.inc.php | 13 +++++-------- 3 files changed, 28 insertions(+), 13 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(); diff --git a/include/common.inc.php b/include/common.inc.php index db7546da7..c6ae8c8af 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -170,7 +170,21 @@ if (is_a_guest()) } // template instance -$template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'], $user['theme'] ); +if + ( + defined('IN_ADMIN') and IN_ADMIN and + isset($user['admin_template']) and + isset($user['admin_theme']) + ) +{ + // Admin template + $template = new Template(PHPWG_ROOT_PATH.'template/'.$user['admin_template'], $user['admin_theme'] ); +} +else +{ + // Classic template + $template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'], $user['theme'] ); +} if ($conf['gallery_locked']) { diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 036f842d9..d3f0b4aa5 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -145,27 +145,24 @@ function setup_style($style) function build_user( $user_id, $use_cache ) { global $conf; + $user['id'] = $user_id; $user = array_merge( $user, getuserdata($user_id, $use_cache) ); // calculation of the number of picture to display per page $user['nb_image_page'] = $user['nb_image_line'] * $user['nb_line_page']; - // include template/theme configuration - if (defined('IN_ADMIN') and IN_ADMIN) + list($user['template'], $user['theme']) = explode('/', $user['template']); + + if (is_admin($user['status'])) { - list($user['template'], $user['theme']) = + list($user['admin_template'], $user['admin_theme']) = explode ( '/', isset($conf['default_admin_layout']) ? $conf['default_admin_layout'] : $user['template'] ); - // TODO : replace $conf['admin_layout'] by $user['admin_layout'] - } - else - { - list($user['template'], $user['theme']) = explode('/', $user['template']); } return $user; -- cgit v1.2.3