From 4b7f9e7005c4562f8b4b554ea5ea53fb1ebf804a Mon Sep 17 00:00:00 2001 From: Tom N Harris Date: Thu, 28 May 2009 23:54:38 +0200 Subject: Change expensive uses of split to the much faster explode. darcs-hash:20090528215438-6942e-bf1b875e689ade6bd1a17e3d812ce16bf35c84a6.gz --- inc/auth.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/auth.php') diff --git a/inc/auth.php b/inc/auth.php index 23031a29c..d497c89d6 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -166,7 +166,7 @@ function auth_login($user,$pass,$sticky=false,$silent=false){ }else{ // read cookie information $cookie = base64_decode($_COOKIE[DOKU_COOKIE]); - list($user,$sticky,$pass) = split('\|',$cookie,3); + list($user,$sticky,$pass) = explode('|',$cookie,3); // get session info $session = $_SESSION[DOKU_COOKIE]['auth']; if($user && $pass){ @@ -744,7 +744,7 @@ function updateprofile() { if ($result = $auth->triggerUserMod('modify', array($_SERVER['REMOTE_USER'], $changes))) { // update cookie and session with the changed data $cookie = base64_decode($_COOKIE[DOKU_COOKIE]); - list($user,$sticky,$pass) = split('\|',$cookie,3); + list($user,$sticky,$pass) = explode('|',$cookie,3); if ($changes['pass']) $pass = PMA_blowfish_encrypt($changes['pass'],auth_cookiesalt()); auth_setCookie($_SERVER['REMOTE_USER'],$pass,(bool)$sticky); -- cgit v1.2.3