diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-07 20:35:49 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-07 20:35:49 +0000 |
commit | b6cfe134badb2d4393e9081b13b2dfca011ed736 (patch) | |
tree | 4f6213e626fa90b4b280b5e663e791559c4a7f8f /templates/show_all_popular.inc.php | |
parent | 90d2acbc54b24b6e8207e12f1cabcbc7541ca447 (diff) | |
download | ampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.tar.gz ampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.tar.bz2 ampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.zip |
* Re-worked Main page of Ampache, adding Album of the moment.
* Moved stats to /stats.php page
* Fixed logic error in resize that could cause nothign to display
if resize was on, but it still failed
* Fixed Upload Album art from Find Album Art
* Added Menu to the TV page
* Fixed logic error that showed localplay if user had access
regardless of global config
* Changed default action of browse.php to song browse
Diffstat (limited to 'templates/show_all_popular.inc.php')
-rw-r--r-- | templates/show_all_popular.inc.php | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/templates/show_all_popular.inc.php b/templates/show_all_popular.inc.php index 551c453e..e9f12a5c 100644 --- a/templates/show_all_popular.inc.php +++ b/templates/show_all_popular.inc.php @@ -5,9 +5,8 @@ All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -24,20 +23,24 @@ <table class="tabledata"> <tr> <td valign="top" > - <?php show_info_box(_("Most Popular Artists"), 'artist', $artists); ?> + <?php show_info_box(_('Most Popular Artists'), 'artist', $artists); ?> </td> <td valign="top" align="left"> - <?php show_info_box(_("Most Popular Albums"), '', $albums); ?> + <?php show_info_box(_('Most Popular Albums'), '', $albums); ?> + </td> + <td valign="top" align="left"> + <?php show_info_box(_('Most Popular Genres'), '', $genres); ?> </td> - </tr> <tr><td colspan="2"> </td></tr> <tr> - <td valign="top" align="left"> - <?php show_info_box(_("Most Popular Genres"), '', $genres); ?> + <td valign="top"> + <?php show_info_box(_('Most Popular Songs'), 'song', $songs); ?> </td> - <td valign="top" > - <?php show_info_box(_("Most Popular Songs"), 'song', $songs); ?> + <td valign="top"> + <?php show_info_box(_('Most Popular Live Streams'),'live_stream',$live_streams); ?> + </td> + <td valign="top"> + <?php show_info_box(_('Most Popular Tags'),'tags',$tags); ?> </td> </tr> -</table> |