diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-11 08:24:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-11 08:24:05 +0000 |
commit | 05c406e1f751ece06a7d54bc636275837f9f0169 (patch) | |
tree | 4bb73b8d560c1ad0d0ff6c14f2607251280ce79b /templates/show_now_playing_row.inc.php | |
parent | 689517e332c874ac09bb41398602622a1fc36af8 (diff) | |
download | ampache-05c406e1f751ece06a7d54bc636275837f9f0169.tar.gz ampache-05c406e1f751ece06a7d54bc636275837f9f0169.tar.bz2 ampache-05c406e1f751ece06a7d54bc636275837f9f0169.zip |
added in user profile, did a little work on the preferences and session, something is fishy with session and tmp_playlist stuff will look into it tomorrow
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 46594411..ef9a0b68 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -23,9 +23,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. $title = scrub_out(truncate_with_ellipse($song->title,'25')); $album = scrub_out(truncate_with_ellipse($song->f_album_full,'25')); $artist = scrub_out(truncate_with_ellipse($song->f_artist_full,'25')); - ?> -<td class="np_cell"><?php echo scrub_out($np_user->fullname); ?></td> +<td class="np_cell"> + <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> +</td> <td class="np_cell"> <a title="<?php echo scrub_out($song->title); ?>" href="<?php echo $web_path; ?>/song.php?action=single_song&song_id=<?php echo $song->id; ?>"> <?php echo $title; ?> |