diff options
author | patdenice <patdenice@piwigo.org> | 2010-03-13 12:39:25 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-03-13 12:39:25 +0000 |
commit | 32d62126660c3c24556577d42bff024767127e55 (patch) | |
tree | 57e9a2e15644df1abdf5a15f63b6e9f1a5e5415a /plugins/admin_multi_view/controller.php | |
parent | 2d7a399f7e1d305398a57b275f6fbafbed57ae00 (diff) |
Feature 1502: Fix admin multi view plugin.
git-svn-id: http://piwigo.org/svn/trunk@5128 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | plugins/admin_multi_view/controller.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/admin_multi_view/controller.php b/plugins/admin_multi_view/controller.php index e7b9b7745..524fca747 100644 --- a/plugins/admin_multi_view/controller.php +++ b/plugins/admin_multi_view/controller.php @@ -128,17 +128,17 @@ $users_html.= '</select>'; // +-----------------------------------------------------------------------+ // | templates | -$my_template = ''; +$my_theme = ''; $themes_html='<select onchange="document.location = this.options[this.selectedIndex].value;">'; -foreach (get_pwg_themes() as $pwg_template) +foreach (get_pwg_themes() as $pwg_theme) { - $selected = $pwg_template == pwg_get_session_var( 'multiview_theme', $view_as_user['template'].'/'.$view_as_user['theme'] ) ? 'selected="selected"' : ''; - $my_template = $selected == '' ? $my_template : $view_as_user['template'].'/theme/'.$view_as_user['theme']; + $selected = $pwg_theme == pwg_get_session_var( 'multiview_theme', $view_as_user['theme'] ) ? 'selected="selected"' : ''; + $my_theme = $selected == '' ? $my_theme : 'themes/'.$view_as_user['theme']; $themes_html .= '<option value="' - .$my_url.'?theme='.$pwg_template + .$my_url.'?theme='.$pwg_theme .'" '.$selected.'>' - .$pwg_template + .$pwg_theme .'</option>'; } $themes_html .= '</select>'; @@ -206,9 +206,9 @@ else <title>Controller</title> <?php // Controller will be displayed with the **real admin template** (without Any if it has been removed) -if ( $my_template !== '') { - $my_template = get_root_url().'template/'.$my_template.'/theme.css'; - echo '<link rel="stylesheet" type="text/css" href="' . $my_template .'">'; +if ( $my_theme !== '') { + $my_theme = get_root_url().$my_theme.'/theme.css'; + echo '<link rel="stylesheet" type="text/css" href="' . $my_theme .'">'; } ?> |