diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-04-28 22:20:42 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-04-28 22:20:42 +0000 |
commit | b290f52c8d13b21cf4620035206957e3bc3dbcdb (patch) | |
tree | 7ad5b85061bb0a7c0c84968cb07c2a6aa7510951 /lib/class/playlist.class.php | |
parent | 7bed87b064736c76653279e779bc4a268f435483 (diff) | |
download | ampache-b290f52c8d13b21cf4620035206957e3bc3dbcdb.tar.gz ampache-b290f52c8d13b21cf4620035206957e3bc3dbcdb.tar.bz2 ampache-b290f52c8d13b21cf4620035206957e3bc3dbcdb.zip |
Some missed hunks for playlist editing and miscellaneous related cleanup.
Diffstat (limited to 'lib/class/playlist.class.php')
-rw-r--r-- | lib/class/playlist.class.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/class/playlist.class.php b/lib/class/playlist.class.php index 042716b2..928ff949 100644 --- a/lib/class/playlist.class.php +++ b/lib/class/playlist.class.php @@ -26,7 +26,7 @@ */ class Playlist extends database_object { - /* Variables from the Datbase */ + /* Variables from the database */ public $id; public $name; public $user; @@ -131,8 +131,9 @@ class Playlist extends database_object { /** * get_items - * This returns an array of playlist songs that are in this playlist. Because the same - * song can be on the same playlist twice they are key'd by the uid from playlist_data + * This returns an array of playlist songs that are in this playlist. + * Because the same song can be on the same playlist twice they are + * keyed by the uid from playlist_data */ public function get_items() { @@ -436,7 +437,7 @@ class Playlist extends database_object { /** * delete - * This deletes the current playlist and all assoicated data + * This deletes the current playlist and all associated data */ public function delete() { |