Do not issue any bug reports against versions earlier than 3.5.4 they will be closed.
Furthermore, we cannot accept bugs about metadata, art, or session handling in 3.5.4 due to the large number of bugs that have been fixed since then. 3.5.4 in general is becoming less supportable, and it is suggested to try to reproduce the bug in the latest nightly.
Before submitting a bug please read http://ampache.org/wiki/support:bugs failure to do so may delay resolution of your report.
Furthermore, we cannot accept bugs about metadata, art, or session handling in 3.5.4 due to the large number of bugs that have been fixed since then. 3.5.4 in general is becoming less supportable, and it is suggested to try to reproduce the bug in the latest nightly.
Before submitting a bug please read http://ampache.org/wiki/support:bugs failure to do so may delay resolution of your report.
FS#214 - Brackets In header.inc.php
Attached to Project:
Ampache
Opened by USMC Guy (usmcguy) - Wednesday, 01 February 2012, 10:08 GMT-7
Last edited by Paul Arthur (flowerysong) - Monday, 20 February 2012, 20:36 GMT-7
Opened by USMC Guy (usmcguy) - Wednesday, 01 February 2012, 10:08 GMT-7
Last edited by Paul Arthur (flowerysong) - Monday, 20 February 2012, 20:36 GMT-7
|
DetailsIn templates/header.inc.php on line 76 there is one set of brackets that I've seen cause issues on some themes, that the bracket is displayed on a new line rather than around the "Log Out" text.
<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> I would recommend removing them so that it doesn't ruin the aesthetic of UI. Here is the line without the brackets I'm referring to. <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> |
This task depends upon
Closed by Paul Arthur (flowerysong)
Monday, 20 February 2012, 20:36 GMT-7
Reason for closing: Fixed
Additional comments about closing: I moved the brackets inside the <a>, which should keep them with the text.
Monday, 20 February 2012, 20:36 GMT-7
Reason for closing: Fixed
Additional comments about closing: I moved the brackets inside the <a>, which should keep them with the text.