diff --git a/library/Unl/Controller/Action/Authenticate.php b/library/Unl/Controller/Action/Authenticate.php index 3679925ee5376ddb99dd2a8638c40bb78b50ae78..d2963f58f538e83a4772cb146fb7f93abe398e71 100644 --- a/library/Unl/Controller/Action/Authenticate.php +++ b/library/Unl/Controller/Action/Authenticate.php @@ -147,9 +147,9 @@ abstract class Unl_Controller_Action_Authenticate extends Unl_Controller_Action $serviceUrl .= $_SERVER['SERVER_NAME'] . $path; } - $adapter = new Unl_Cas($serviceUrl, 'https://login.unl.edu/cas'); + $adapter = new Unl_Cas($serviceUrl, 'https://shib.unl.edu/idp/profile/cas'); } return $adapter; } -} \ No newline at end of file +} diff --git a/library/Unl/Controller/Plugin/Auth/Cas.php b/library/Unl/Controller/Plugin/Auth/Cas.php index 808427dbc64b5de35ce67e311ad7b24530fc5431..a82cb424bf902de6e990aab6d85940b377239c9c 100644 --- a/library/Unl/Controller/Plugin/Auth/Cas.php +++ b/library/Unl/Controller/Plugin/Auth/Cas.php @@ -81,7 +81,7 @@ class Unl_Controller_Plugin_Auth_Cas extends Zend_Controller_Plugin_Abstract } // Init the CAS Adapter. - $casAdapter = new Unl_Cas($serviceUrl, 'https://login.unl.edu/cas'); + $casAdapter = new Unl_Cas($serviceUrl, 'https://shib.unl.edu/idp/profile/cas'); // If either the user has no ticket, the ticket is expired, or a user isn't logged in, go ahead with transparent login. if ($casAdapter->isTicketExpired() || !Zend_Auth::getInstance()->hasIdentity()) { @@ -96,4 +96,4 @@ class Unl_Controller_Plugin_Auth_Cas extends Zend_Controller_Plugin_Abstract exit; } } -} \ No newline at end of file +}