summaryrefslogtreecommitdiff
path: root/themes/colors
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-10-29 11:03:56 +0000
committerfisharebest <fisharebest@gmail.com>2010-10-29 11:03:56 +0000
commit422f2f76172844493b930ddf6f9bd76d2e10568c (patch)
tree459c98c677fbd3496968cabb7eeccdd69d36bf57 /themes/colors
parente5c53c8a5c3f3bc77f58838081dcb82f6c758e0c (diff)
downloadwebtrees-422f2f76172844493b930ddf6f9bd76d2e10568c.tar.gz
webtrees-422f2f76172844493b930ddf6f9bd76d2e10568c.tar.bz2
webtrees-422f2f76172844493b930ddf6f9bd76d2e10568c.zip
#667699 - Wrong login URL in FAB and Colors theme svn 9719
Diffstat (limited to 'themes/colors')
-rw-r--r--themes/colors/header.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/colors/header.php b/themes/colors/header.php
index 53e2a38539..902d5c819e 100644
--- a/themes/colors/header.php
+++ b/themes/colors/header.php
@@ -120,7 +120,7 @@ if ($view!='simple') {
if (WT_USER_ID) {
echo
'<li><a href="edituser.php" class="icon_color">', getUserFullName(WT_USER_ID), '</a></li>',
- ' | <li class="icon_color">', logout_link(), '</li>';
+ ' | <li>', logout_link(), '</li>';
if (WT_USER_GEDCOM_ADMIN) {
echo ' | <li><a href="admin.php" class="icon_color">', i18n::translate('Administration'), '</a></li>';
}
@@ -128,7 +128,7 @@ if ($view!='simple') {
echo ' | <li><a href="javascript:;" onclick="window.open(\'edit_changes.php\',\'_blank\',\'width=600,height=500,resizable=1,scrollbars=1\'); return false;" style="color:red;">', i18n::translate('Pending Changes'), '</a></li>';
}
} else {
- echo '<li class="icon_color">', login_link(), '</li>';
+ echo '<li>', login_link(), '</li>';
}
echo '<span class="link"> | ', MenuBar::getFavoritesMenu()->getMenuAsList();
$language_menu=MenuBar::getLanguageMenu();