summaryrefslogtreecommitdiffstats
path: root/templates/header.inc.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2012-02-20 23:33:58 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2012-02-20 23:33:58 -0500
commitdd764b1ebfc6ed7898b728c8866c6ed945dda163 (patch)
tree34ded67629a2c78b3150061ed4f80079d7f76300 /templates/header.inc.php
parente36d29434ed19d4954a609ce71bae75590e8fe08 (diff)
downloadampache-dd764b1ebfc6ed7898b728c8866c6ed945dda163.tar.gz
ampache-dd764b1ebfc6ed7898b728c8866c6ed945dda163.tar.bz2
ampache-dd764b1ebfc6ed7898b728c8866c6ed945dda163.zip
FS#214 - Brackets In header.inc.php
Moved brackets inside the <a> element, which should prevent splitting them from the text they're supposed to enclose.
Diffstat (limited to 'templates/header.inc.php')
-rw-r--r--templates/header.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/header.inc.php b/templates/header.inc.php
index b6de6259..8a7fe98f 100644
--- a/templates/header.inc.php
+++ b/templates/header.inc.php
@@ -73,7 +73,7 @@ if (Config::get('use_rss')) { ?>
<?php show_box_top('','box box_headerbox'); ?>
<?php require_once Config::get('prefix') . '/templates/show_search_bar.inc.php'; ?>
<?php require_once Config::get('prefix') . '/templates/show_playtype_switch.inc.php'; ?>
- <span id="loginInfo"><a href="<?php echo Config::get('web_path'); ?>/preferences.php?tab=account"><?php echo $GLOBALS['user']->fullname; ?></a> [<a href="<?php echo Config::get('web_path'); ?>/logout.php"><?php echo _('Log out'); ?></a>]</span>
+ <span id="loginInfo"><a href="<?php echo Config::get('web_path'); ?>/preferences.php?tab=account"><?php echo $GLOBALS['user']->fullname; ?></a> <a href="<?php echo Config::get('web_path'); ?>/logout.php">[<?php echo _('Log out'); ?>]</a></span>
<?php show_box_bottom(); ?>
</div> <!-- End headerbox -->
</div><!-- End header -->