diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-21 19:29:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-21 19:29:21 +0000 |
commit | c6ab824a8ad959e8f60d415f66b8ea485d0f0d18 (patch) | |
tree | f107e110db88acd6767cd8e9279863149e324667 | |
parent | fbab0ebea531927baf98e6144599057db464c49b (diff) | |
download | ampache-c6ab824a8ad959e8f60d415f66b8ea485d0f0d18.tar.gz ampache-c6ab824a8ad959e8f60d415f66b8ea485d0f0d18.tar.bz2 ampache-c6ab824a8ad959e8f60d415f66b8ea485d0f0d18.zip |
br was outside replaced div, caused extra br on every ajax refresh
-rw-r--r-- | templates/show_now_playing.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_now_playing.inc b/templates/show_now_playing.inc index 98fd71eb..52ae8656 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -29,6 +29,7 @@ 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> @@ -46,7 +47,6 @@ foreach ($results as $item) { } // end foreach ?> - <!-- End Now Playing --> </div> -<br /> + <!-- End Now Playing --> <?php } // end if count results ?> |