summaryrefslogtreecommitdiffstats
path: root/song.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-07-09 07:49:59 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-07-09 07:49:59 +0000
commitc5d6e04d114d3c4b3f31743ccd0d4a60c9ef9632 (patch)
treebc3196cb97d63079013ebfc5b183d2038ee7c9e7 /song.php
parentc9170314af9139abef87629d218c7999bd3c8df3 (diff)
downloadampache-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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/song.php b/song.php
index 88dc31d7..96a3e096 100644
--- a/song.php
+++ b/song.php
@@ -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);
}