summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2012-02-25 01:14:41 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2012-02-25 01:14:41 -0500
commit8161a94cffb979e33c2c9384a9afd857783322e6 (patch)
treecf2da934cafc4ad476af05746267d47c7f827ed1
parentebac6e49a64a98f73315b622ffe470dde325b711 (diff)
downloadampache-8161a94cffb979e33c2c9384a9afd857783322e6.tar.gz
ampache-8161a94cffb979e33c2c9384a9afd857783322e6.tar.bz2
ampache-8161a94cffb979e33c2c9384a9afd857783322e6.zip
Consistently key off of 'show_similar'
-rw-r--r--artists.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/artists.php b/artists.php
index 83e91427..40ae256d 100644
--- a/artists.php
+++ b/artists.php
@@ -40,7 +40,7 @@ switch($_REQUEST['action']) {
$object_ids = $artist->get_albums($_REQUEST['catalog']);
$object_type = 'album';
require_once Config::get('prefix') . '/templates/show_artist.inc.php';
- if (Config::get('lastfm_api_key')) {
+ if (Config::get('show_similar')) {
if ($object_ids = Recommendation::get_artists_like($artist->id)) {
// Ugly code to grab the relevant entries.
// Almost looks like Perl.