summaryrefslogtreecommitdiff
path: root/themes/colors
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-10-29 11:14:39 +0000
committerfisharebest <fisharebest@gmail.com>2010-10-29 11:14:39 +0000
commit2970d000836de0d7982d5281269650fd3b336950 (patch)
tree8918fcca473424821b9c8f5fd513c5d0b14d7c51 /themes/colors
parent841c0fed9d207b8c8d86c917c7c67d5345103c02 (diff)
downloadwebtrees-2970d000836de0d7982d5281269650fd3b336950.tar.gz
webtrees-2970d000836de0d7982d5281269650fd3b336950.tar.bz2
webtrees-2970d000836de0d7982d5281269650fd3b336950.zip
#667699 - Wrong login URL in FAB and Colors theme svn 9719 (Markup in colors theme)
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 902d5c819e..31ec759535 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>', logout_link(), '</li>';
+ ' | <li>', logout_link('class="icon_color"'), '</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>', login_link(), '</li>';
+ echo '<li>', login_link('class="icon_color"'), '</li>';
}
echo '<span class="link"> | ', MenuBar::getFavoritesMenu()->getMenuAsList();
$language_menu=MenuBar::getLanguageMenu();