diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-06 20:59:26 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-06 20:59:26 +0000 |
commit | e73e55333452ce5615c21f27f323cc94bb8654bc (patch) | |
tree | c7b6dd77684623d2461a77055f2b9608885f5570 /templates/show_tv_nowplaying.inc.php | |
parent | db638040c7d6ee38187ffa9a99d083449e9669a3 (diff) | |
download | ampache-e73e55333452ce5615c21f27f323cc94bb8654bc.tar.gz ampache-e73e55333452ce5615c21f27f323cc94bb8654bc.tar.bz2 ampache-e73e55333452ce5615c21f27f323cc94bb8654bc.zip |
* Fixed display issues on TV page relating to
now playing Post AJAX and floating issues
* Fixed display of Last IP if tracking disabled
* Fixed play issue with invalid songs when
using Democratic Play
Diffstat (limited to 'templates/show_tv_nowplaying.inc.php')
-rw-r--r-- | templates/show_tv_nowplaying.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/show_tv_nowplaying.inc.php b/templates/show_tv_nowplaying.inc.php index 94e4dee2..10cf1f43 100644 --- a/templates/show_tv_nowplaying.inc.php +++ b/templates/show_tv_nowplaying.inc.php @@ -20,6 +20,7 @@ */ /* Pull the Now Playing Information */ $results = get_now_playing(); +$web_path = conf('web_path'); ?> <table cellpadding="0"> <?php @@ -31,7 +32,7 @@ foreach ($results as $row) { <tr> <td> <a target="_blank" href="<?php echo $web_path; ?>/image.php?id=<?php echo $row['song']->album; ?>&type=popup&sid=<?php echo session_id(); ?>" onclick="popup_art('<?php echo $web_path; ?>/image.php?id=<?php echo $row['song']->album; ?>&type=popup&sid=<?php echo session_id(); ?>'); return false;"> - <img align="middle" border="0" src="<?php echo $web_path; ?>/image.php?id=<?php echo $row['song']->album; ?>&fast=1" /> + <img align="middle" border="0" src="<?php echo $web_path; ?>/image.php?id=<?php echo $row['song']->album; ?>&fast=1" width="275" height="275" /> </a> </td> </tr> |