From 1f045c8c7be32dbb3c9dd50d419ed9e073876fbd Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Sat, 4 Jun 2011 15:40:58 +0200 Subject: [PATCH] CC-2356 Default genre when uploading to Soundcloud doesn't work somehow variable names must have changed. --- airtime_mvc/application/models/Soundcloud.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/models/Soundcloud.php b/airtime_mvc/application/models/Soundcloud.php index 388907dbc..5e17049b6 100644 --- a/airtime_mvc/application/models/Soundcloud.php +++ b/airtime_mvc/application/models/Soundcloud.php @@ -67,7 +67,7 @@ class ATSoundcloud { } else { $default_genre = Application_Model_Preference::GetSoundCloudGenre(); - if ($genre != "") { + if ($default_genre != "") { $track_data['track[genre]'] = $default_genre; } }