diff options
| author | Rob Peters <makitso@gmail.com> | 2010-06-30 00:34:41 +0000 |
|---|---|---|
| committer | Rob Peters <makitso@gmail.com> | 2010-06-30 00:34:41 +0000 |
| commit | 02b0a017d83f06cfccee49a1cae801370984e36d (patch) | |
| tree | 9495fd6bc09ce124b429a817582e86368973460b /themes/clouds | |
| parent | 183dc0bac4a1d67841ec13419075414da935bb30 (diff) | |
| download | webtrees-02b0a017d83f06cfccee49a1cae801370984e36d.tar.gz webtrees-02b0a017d83f06cfccee49a1cae801370984e36d.tar.bz2 webtrees-02b0a017d83f06cfccee49a1cae801370984e36d.zip | |
Correct missing UL tag
Diffstat (limited to 'themes/clouds')
| -rw-r--r-- | themes/clouds/toplinks.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/themes/clouds/toplinks.php b/themes/clouds/toplinks.php index 8f596a2012..48cdd95144 100644 --- a/themes/clouds/toplinks.php +++ b/themes/clouds/toplinks.php @@ -118,17 +118,16 @@ $menubar = new MenuBar(); </table> </td> -<?php if (empty($SEARCH_SPIDER)) { ?> - <td class="toplinks_right"> - <div class="makeMenu" align="<?php echo $TEXT_DIRECTION=="rtl"?"left":"right"; ?>" > - <?php echo MenuBar::getFavoritesMenu()->getMenuAsList(); +<?php if (empty($SEARCH_SPIDER)) { + echo '<td class="toplinks_right">'; + echo '<div style="float:', WT_CSS_REVERSE_ALIGN, ';"><ul class="makeMenu">'; + echo MenuBar::getFavoritesMenu()->getMenuAsList(); global $ALLOW_THEME_DROPDOWN; - echo ' | ', MenuBar::getLanguageMenu()->getMenuAsList(); + echo ' | ', MenuBar::getLanguageMenu()->getMenuAsList(); if ($ALLOW_THEME_DROPDOWN && get_site_setting('ALLOW_USER_THEMES')) { echo ' | ', MenuBar::getThemeMenu()->getMenuAsList(); } - - ?> +?> </div> </td> <?php } ?> |
