mirror of https://github.com/jacekkow/uphpCAS

Jacek Kowalski
2019-08-07 467a55acd9651c8a9ce7367b7c7f0ee9d653b108
uphpCAS.php
@@ -122,10 +122,14 @@
         .($returnUrl ? '?service='.urlencode($returnUrl) : '');
   }
   
   public function logout($returnUrl = NULL) {
   public function logoutLocal() {
      @session_start();
      unset($_SESSION[$this->sessionName]);
   }
   public function logout($returnUrl = NULL) {
      $this->logoutLocal();
      if($this->isAuthenticated()) {
         unset($_SESSION[$this->sessionName]);
         header('Location: '.$this->logoutUrl($returnUrl));
         die();
      } elseif($returnUrl) {
@@ -228,13 +232,15 @@
            }
         }
      } catch(Exception $e) {
         throw new JasigException('Authentication error: CAS server'
               .' response invalid - parse error', 0, $e);
      } finally {
         libxml_clear_errors();
         libxml_disable_entity_loader($xmlEntityLoader);
         libxml_use_internal_errors($xmlInternalErrors);
         throw new JasigException('Authentication error: CAS server'
               .' response invalid - parse error', 0, $e);
      }
      libxml_clear_errors();
      libxml_disable_entity_loader($xmlEntityLoader);
      libxml_use_internal_errors($xmlInternalErrors);
      
      $failure = $xml->getElementsByTagName('authenticationFailure');
      $success = $xml->getElementsByTagName('authenticationSuccess');