]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/auth/class_CookieAuth.php
die() removed... :(
[core.git] / inc / classes / main / auth / class_CookieAuth.php
index b6e00764769526a54ea5dac03cbccc387091d300..436268f00c36113add24959dd8a9c324644f4afa 100644 (file)
@@ -30,10 +30,6 @@ class CookieAuth extends BaseFrameworkSystem implements Authorizeable, Registera
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Clean up a little
-               $this->removeNumberFormaters();
-               $this->removeSystemArray();
        }
 
        /**
@@ -70,7 +66,7 @@ class CookieAuth extends BaseFrameworkSystem implements Authorizeable, Registera
         * @return      void
         */
        public function setPasswordAuth ($passHash) {
-               $this->getResponseInstance()->addCookie('u_hash', $passHash, true);
+               $this->getResponseInstance()->addCookie('u_hash', $passHash);
        }
 
        /**