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/show_recently_played.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/show_recently_played.inc.php')
-rw-r--r-- | templates/show_recently_played.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_recently_played.inc.php b/templates/show_recently_played.inc.php index e7250a74..0e1ee595 100644 --- a/templates/show_recently_played.inc.php +++ b/templates/show_recently_played.inc.php @@ -25,11 +25,11 @@ $time_unit = array('',_('seconds ago'),_('minutes ago'),_('hours ago'),_('days a ?> <table class="table-data" cellspacing="0"> <tr class="table-header"> - <td><?php echo _('Username'); ?></td> - <td><?php echo _('Song'); ?></td> - <td><?php echo _('Album'); ?></td> - <td><?php echo _('Artist'); ?></td> - <td><?php echo _('Last Played'); ?></td> + <th><?php echo _('Username'); ?></th> + <th><?php echo _('Song'); ?></th> + <th><?php echo _('Album'); ?></th> + <th><?php echo _('Artist'); ?></th> + <th><?php echo _('Last Played'); ?></th> </tr> <?php foreach ($data as $row) { $row_user = new User($row['user']); |