diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-09 07:49:59 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-09 07:49:59 +0000 |
commit | c5d6e04d114d3c4b3f31743ccd0d4a60c9ef9632 (patch) | |
tree | bc3196cb97d63079013ebfc5b183d2038ee7c9e7 /song.php | |
parent | c9170314af9139abef87629d218c7999bd3c8df3 (diff) | |
download | ampache-c5d6e04d114d3c4b3f31743ccd0d4a60c9ef9632.tar.gz ampache-c5d6e04d114d3c4b3f31743ccd0d4a60c9ef9632.tar.bz2 ampache-c5d6e04d114d3c4b3f31743ccd0d4a60c9ef9632.zip |
removed ID field from user table, and everything that goes with that...
Diffstat (limited to 'song.php')
-rw-r--r-- | song.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ elseif ( $_REQUEST['popular_songs'] ) { $song_ids = get_popular_songs($_REQUEST['popular_songs'], 'global'); } elseif ( $_REQUEST['your_popular_songs'] ) { - $song_ids = get_popular_songs($_REQUEST['your_popular_songs'], 'your', $user->id); + $song_ids = get_popular_songs($_REQUEST['your_popular_songs'], 'your', $user->username); } |