diff options
| author | Nigel Osborne <kiwi3685@me.com> | 2013-04-09 03:21:23 +0000 |
|---|---|---|
| committer | Nigel Osborne <kiwi3685@me.com> | 2013-04-09 03:21:23 +0000 |
| commit | 01d9e4eed4264ab62d135f8f8dd80245237d2118 (patch) | |
| tree | 8eb5069cfd7b70c0471cb629aedca8ff5ffc3e3e /modules_v3/theme_select | |
| parent | 2888eb70f91b5e7d12f63d3841cb43d3af2c747b (diff) | |
| download | webtrees-01d9e4eed4264ab62d135f8f8dd80245237d2118.tar.gz webtrees-01d9e4eed4264ab62d135f8f8dd80245237d2118.tar.bz2 webtrees-01d9e4eed4264ab62d135f8f8dd80245237d2118.zip | |
Re-style block theme-select to avoid using getMenuAsDropdown()
Diffstat (limited to 'modules_v3/theme_select')
| -rw-r--r-- | modules_v3/theme_select/module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules_v3/theme_select/module.php b/modules_v3/theme_select/module.php index a8939b8562..592ff50312 100644 --- a/modules_v3/theme_select/module.php +++ b/modules_v3/theme_select/module.php @@ -46,7 +46,7 @@ class theme_select_WT_Module extends WT_Module implements WT_Module_Block { $title=$this->getTitle();
$menu=WT_MenuBar::getThemeMenu();
if ($menu) {
- $content='<br><div class="center theme_form">'.WT_MenuBar::getThemeMenu()->getMenuAsDropdown().'</div><br>';
+ $content='<div class="center theme_form">'.WT_MenuBar::getThemeMenu().'</div><br>';
if ($template) {
require WT_THEME_DIR.'templates/block_main_temp.php';
|
