diff options
author | pb1dft <pb1dft@ampache> | 2006-11-04 01:38:14 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-11-04 01:38:14 +0000 |
commit | f6c313e5502c38706de8a28bfe239a3c1ea04d00 (patch) | |
tree | 5d0052112a9d25b410e37c252d49d46addb3aa05 /lib/class/tmp_playlist.class.php | |
parent | d7996a68590933cbccbcf1011e8cf6e92c1510b7 (diff) | |
download | ampache-f6c313e5502c38706de8a28bfe239a3c1ea04d00.tar.gz ampache-f6c313e5502c38706de8a28bfe239a3c1ea04d00.tar.bz2 ampache-f6c313e5502c38706de8a28bfe239a3c1ea04d00.zip |
I made a mistake
Diffstat (limited to 'lib/class/tmp_playlist.class.php')
-rw-r--r-- | lib/class/tmp_playlist.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/tmp_playlist.class.php b/lib/class/tmp_playlist.class.php index 0e52aac9..2a85be2f 100644 --- a/lib/class/tmp_playlist.class.php +++ b/lib/class/tmp_playlist.class.php @@ -85,7 +85,7 @@ class tmpPlaylist { function get_items() { $sql = "SELECT object_id FROM tmp_playlist_data " . - "WHERE tmp_playlist_data.tmp_playlist='" . sql_escape($this->id) . "'"; + "WHERE tmp_playlist_data.tmp_playlist='" . sql_escape($this->id) . "' ORDER by id ASC"; $db_results = mysql_query($sql, dbh()); while ($results = mysql_fetch_assoc($db_results)) { |