From 5c7d9fe31ce9048a3218e59ea73d4717b8ce66de Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Tue, 8 Sep 2015 16:15:08 -0400 Subject: [PATCH] Change links for SoundCloud functionality to use same casing as navigation --- airtime_mvc/application/controllers/ThirdPartyController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/controllers/ThirdPartyController.php b/airtime_mvc/application/controllers/ThirdPartyController.php index 5c15ae5ea..1f864776e 100644 --- a/airtime_mvc/application/controllers/ThirdPartyController.php +++ b/airtime_mvc/application/controllers/ThirdPartyController.php @@ -49,7 +49,7 @@ abstract class ThirdPartyController extends Zend_Controller_Action { public function deauthorizeAction() { $function = $this->_SERVICE_TOKEN_ACCESSOR; Application_Model_Preference::$function(""); - header('Location: ' . $this->_baseUrl . 'Preference'); // Redirect back to the Preference page + header('Location: ' . $this->_baseUrl . 'preference'); // Redirect back to the preference page } /** @@ -61,7 +61,7 @@ abstract class ThirdPartyController extends Zend_Controller_Action { public function redirectAction() { $code = $_GET['code']; $this->_service->requestNewAccessToken($code); - header('Location: ' . $this->_baseUrl . 'Preference'); // Redirect back to the Preference page + header('Location: ' . $this->_baseUrl . 'preference'); // Redirect back to the preference page } /**