diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-31 07:22:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-31 07:22:18 +0000 |
commit | f8c98952aa5a8a30a50160db864217d6bf942a8f (patch) | |
tree | 96e537df58a24cc024a975f8414e3e06aa8fae1d /templates/show_now_playing_row.inc.php | |
parent | 2148ecc8ac957beb53ac1be3b6d7aafba491b7aa (diff) | |
download | ampache-f8c98952aa5a8a30a50160db864217d6bf942a8f.tar.gz ampache-f8c98952aa5a8a30a50160db864217d6bf942a8f.tar.bz2 ampache-f8c98952aa5a8a30a50160db864217d6bf942a8f.zip |
fixed now playing, hopefully once and for all, added title text to the now playing username that displays the agent they are using to play said song, added distinct sessions and session lengths for each stream instance
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 0ff867b6..cb4331d4 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -25,7 +25,7 @@ $album = scrub_out(truncate_with_ellipsis($song->f_album_full,'25')); $artist = scrub_out(truncate_with_ellipsis($song->f_artist_full,'25')); ?> <td class="np_cell_left"><b><?php echo _('Username'); ?></b>:<br /> - <a href="<?php echo $web_path; ?>/stats.php?action=show_user&user_id=<?php echo $np_user->id; ?>"><?php echo scrub_out($np_user->fullname); ?></a><br /><br /> + <a title="<?php echo scrub_out($agent); ?>" href="<?php echo $web_path; ?>/stats.php?action=show_user&user_id=<?php echo $np_user->id; ?>"><?php echo scrub_out($np_user->fullname); ?></a><br /><br /> <!-- ## modified ##--> <strong><?php echo _('Song'); ?></strong><br /> <a title="<?php echo scrub_out($song->title); ?>" href="<?php echo $web_path; ?>/stream.php?action=single_song&song_id=<?php echo $song->id; ?>"> |