aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2010-05-18 20:42:07 +0000
committerrvelices <rv-github@modusoptimus.com>2010-05-18 20:42:07 +0000
commite5ef8aeb4df2bd0c75faf85e96c15638077095bf (patch)
tree16783dbb2e3dc5221cb4c58be4b4f156ab798c29
parent00f81e908092ee26987bd197127a36129ace5da3 (diff)
multi view plugin can select inactive themes
git-svn-id: http://piwigo.org/svn/branches/2.1@6236 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--plugins/admin_multi_view/controller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/admin_multi_view/controller.php b/plugins/admin_multi_view/controller.php
index 524fca747..8934ec451 100644
--- a/plugins/admin_multi_view/controller.php
+++ b/plugins/admin_multi_view/controller.php
@@ -130,7 +130,9 @@ $users_html.= '</select>';
// | templates |
$my_theme = '';
$themes_html='<select onchange="document.location = this.options[this.selectedIndex].value;">';
-foreach (get_pwg_themes() as $pwg_theme)
+include_once(PHPWG_ROOT_PATH.'admin/include/themes.class.php');
+$themes = new themes();
+foreach ($themes->fs_themes as $pwg_theme => $fs_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'];