diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
commit | c56aeb1b7003ed10da98a8bbc8305a5cb90357a6 (patch) | |
tree | 476ed3baf1f14923c7034a340c172f4d38682c26 /templates/show_index.inc.php | |
parent | 8442e4c7dbb9bad0386489418567c667e7b5ed91 (diff) | |
download | ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.gz ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.bz2 ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.zip |
removed random space on lastfm prefs, started work on managing shout and flagged items, cleaned up shoutbox css a bit
Diffstat (limited to 'templates/show_index.inc.php')
-rw-r--r-- | templates/show_index.inc.php | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/templates/show_index.inc.php b/templates/show_index.inc.php index 5dbdf08b..50637547 100644 --- a/templates/show_index.inc.php +++ b/templates/show_index.inc.php @@ -28,17 +28,6 @@ if (isset($_REQUEST['xspf']) && isset ($_REQUEST['play_info'])){ <div id="now_playing"> <?php show_now_playing(); ?> </div> <!-- Close Now Playing Div --> -<!-- Sticky Objects, if sticky is enabled --> -<?php if (Config::get('shoutbox')) { ?> -<div id="shout_objects"> - <?php - $shouts = shoutBox::get_top('5'); - if (count($shouts)) { - require_once Config::get('prefix') . '/templates/show_shoutbox.inc.php'; - } - ?> -</div> -<?php } ?> <!-- Randomly selected albums of the moment --> <div id="random_selection"> <?php @@ -55,3 +44,15 @@ if (isset($_REQUEST['xspf']) && isset ($_REQUEST['play_info'])){ show_box_bottom(); ?> </div> +<!-- Shoutbox Objects, if shoutbox is enabled --> +<?php if (Config::get('shoutbox')) { ?> +<div id="shout_objects"> + <?php + $shouts = shoutBox::get_top('5'); + if (count($shouts)) { + require_once Config::get('prefix') . '/templates/show_shoutbox.inc.php'; + } + ?> +</div> +<?php } ?> + |