diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 01:31:58 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-04 01:31:58 +0000 |
commit | 848a1bc5388301e128cb5c2c4d8dcb5d06721bb4 (patch) | |
tree | 55a165892eb2bfb486d3120ac376da0321413c35 /modules | |
parent | 3851c073e5b51059e60de5d79b78064c53075c04 (diff) | |
download | ampache-848a1bc5388301e128cb5c2c4d8dcb5d06721bb4.tar.gz ampache-848a1bc5388301e128cb5c2c4d8dcb5d06721bb4.tar.bz2 ampache-848a1bc5388301e128cb5c2c4d8dcb5d06721bb4.zip |
fixed lastfm gather album art and add
Diffstat (limited to 'modules')
-rw-r--r-- | modules/infotools/lastfm.class.php | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/modules/infotools/lastfm.class.php b/modules/infotools/lastfm.class.php index 232c81ef..bdcf553a 100644 --- a/modules/infotools/lastfm.class.php +++ b/modules/infotools/lastfm.class.php @@ -22,22 +22,16 @@ class LastFMSearch {
- var $base_url = "http://ws.audioscrobbler.com/1.0/album";
- var $token;
- var $results=array(); // Array of results
- var $_parser; // The XML parser
- var $_grabtags; // Tags to grab the contents of
- var $_sourceTag; // source tag don't ask
- var $_subTag; // Stupid hack to make things come our right
- var $_currentTag; // Stupid hack to make things come out right
- var $_currentTagContents;
- var $_currentPage=0;
- var $_maxPage=1;
- var $_default_results_pages=1;
+ protected $base_url = "http://ws.audioscrobbler.com/1.0/album";
+ public $results=array(); // Array of results
+ private $_parser; // The XML parser
+ protected $_grabtags = array('coverart','large','medium','small');
+ private $_subTag; // Stupid hack to make things come our right
+ private $_currentTag; // Stupid hack to make things come out right
function LastFMSearch() {
-
- $this->_grabtags = array('coverart','large','medium','small');
+
+ // Rien a faire
} // LastFMSearch
|