diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-12-11 17:02:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-12-11 17:02:13 +0000 |
commit | dbf125ec1594c721ef6253baf9c340289fd586a8 (patch) | |
tree | 39c4f243fa5b0a20b76dd2c06a42a0e536e68338 /lib/class/album.class.php | |
parent | f035080a1e6b57da59ff4b2320bd79b4bee96d71 (diff) | |
download | ampache-dbf125ec1594c721ef6253baf9c340289fd586a8.tar.gz ampache-dbf125ec1594c721ef6253baf9c340289fd586a8.tar.bz2 ampache-dbf125ec1594c721ef6253baf9c340289fd586a8.zip |
Fix Amazon album art search, requires new config options
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index 5c32ef41..127bcdc8 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -762,7 +762,7 @@ class Album extends database_object { foreach ($amazon_base_urls AS $amazon_base) { // Create the Search Object - $amazon = new AmazonSearch(Config::get('amazon_developer_key'), $amazon_base); + $amazon = new AmazonSearch(Config::get('amazon_developer_public_key'), Config::get('amazon_developer_private_key'), $amazon_base); if(Config::get('proxy_host') AND Config::get('proxy_port')) { $proxyhost = Config::get('proxy_host'); $proxyport = Config::get('proxy_port'); |