diff options
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | templates/show_now_playing.inc | 4 |
2 files changed, 2 insertions, 4 deletions
@@ -49,7 +49,9 @@ if (conf('refresh_limit') > 5) { <table id="bigdaddy" style="padding-left:5px;padding-right:5px;padding-top:5px;padding-bottom:5px;" width="100%"> <tr> <td style="padding-left:17px;" valign="top" colspan="2"> + <div id="nowplaying"> <?php show_now_playing(); ?> + </div> <!-- Close Now Playing Div --> </td> </tr> <tr> diff --git a/templates/show_now_playing.inc b/templates/show_now_playing.inc index 52ae8656..27b903a5 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -29,8 +29,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. if (count($results)) { ?> - <!-- Start Now Playing --> - <div id="nowplaying"> <div id="np_title"> <h1><?php echo _('Now Playing'); ?></h1> </div> @@ -47,6 +45,4 @@ foreach ($results as $item) { } // end foreach ?> - </div> - <!-- End Now Playing --> <?php } // end if count results ?> |