diff options
author | spocky <spocky@ampache> | 2007-09-24 19:49:38 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-09-24 19:49:38 +0000 |
commit | 0dce31de404c46555b0c0d9c58297b506e50e4f8 (patch) | |
tree | 803d317fff41537473c0d1ae77d971ab82df3f67 /templates/header.inc.php | |
parent | a3d16d1cd6ec1b2fbba373177468a91a6ab49c99 (diff) | |
download | ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.gz ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.bz2 ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.zip |
- Cleaned up php files (removed useless inlines styles, replaced header td with th...)
- Cleaned up css (removed some unused classes)
- Changed quick search size and added ability to customize it
- Removed width=100% in preferences tables
- Corrected missing closing tag in sidebar
- Minor corrections
Diffstat (limited to 'templates/header.inc.php')
-rw-r--r-- | templates/header.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/header.inc.php b/templates/header.inc.php index 32009c36..4042eed4 100644 --- a/templates/header.inc.php +++ b/templates/header.inc.php @@ -61,12 +61,12 @@ if (Config::get('use_rss')) { ?> <div id="topbar"><!-- This is the topbar row --> <div id="topbarleft"> <a href="http://www.ampache.org"> - <img src="<?php echo $web_path; ?><?php echo Config::get('theme_path'); ?>/images/ampache.png" border="0" title="Ampache: For the love of music" alt="Ampache: For the love of music" /> + <img src="<?php echo $web_path; ?><?php echo Config::get('theme_path'); ?>/images/ampache.png" title="Ampache: For the love of music" alt="Ampache: For the love of music" /> </a> </div><!--End topbarleft --> <div id="topbarright"> <?php show_box_top('','box box_topbarright'); ?> - <b><?php echo _('You are currently logged in as') . " " . $GLOBALS['user']->fullname; ?></b> + <span id="loginInfo"><?php echo _('You are currently logged in as') . " " . $GLOBALS['user']->fullname; ?></span> <?php require_once Config::get('prefix') . '/templates/show_search_bar.inc.php'; ?> <?php show_box_bottom(); ?> </div> <!-- End topbarright --> |