diff options
author | nikrou <nikrou@piwigo.org> | 2010-02-15 21:36:36 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-02-15 21:36:36 +0000 |
commit | 6992b275359c8073aebd123e7280b7d2154988b0 (patch) | |
tree | a535f3e5d7c186b63439590075a261bc2457bc48 /include | |
parent | c1d6177df9ebb853217958d91aba26f35f66a497 (diff) |
Bug 1426 fixed : admin help popup use gallery theme instead of admin theme
git-svn-id: http://piwigo.org/svn/trunk@4893 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/common.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 8ef47b0a0..124625e4d 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -155,7 +155,8 @@ if (is_a_guest()) } // template instance -if ( defined('IN_ADMIN') and IN_ADMIN ) +if (( defined('IN_ADMIN') and IN_ADMIN ) + or (defined('PWG_HELP') and PWG_HELP)) {// Admin template list($user['admin_template'], $user['admin_theme']) = explode ('/', $conf['admin_layout']); |