From b03789273e176c41c369f33e8b96b93d60dc0463 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 19 May 2003 13:34:33 +0000 Subject: [PATCH] killed some left-over debug-messages --- phpgwapi/inc/class.sessions.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpgwapi/inc/class.sessions.inc.php b/phpgwapi/inc/class.sessions.inc.php index b4e9f62485..b8b9a17522 100644 --- a/phpgwapi/inc/class.sessions.inc.php +++ b/phpgwapi/inc/class.sessions.inc.php @@ -306,7 +306,7 @@ $GLOBALS['phpgw']->crypto->cleanup(); unset($GLOBALS['phpgw']->crypto); } - echo 'DEBUG: Sessions: account_id is empty!
'."\n"; + //echo 'DEBUG: Sessions: account_id is empty!
'."\n"; return False; } else @@ -388,7 +388,7 @@ $this->account_domain = $GLOBALS['phpgw_info']['server']['default_domain']; } - echo "

session::create(login='$login'): lid='$this->account_lid', domain='$this->account_domain'

\n"; + //echo "

session::create(login='$login'): lid='$this->account_lid', domain='$this->account_domain'

\n"; $user_ip = $this->getuser_ip(); if (($blocked = $this->login_blocked($login,$user_ip)) || // too many unsuccessful attempts @@ -471,7 +471,7 @@ $GLOBALS['phpgw']->auth->update_lastlogin($this->account_id,$user_ip); $GLOBALS['phpgw']->db->transaction_commit(); - if (!$this->sessionid) echo "

session::create(login='$login') = '$this->sessionid': lid='$this->account_lid', domain='$this->account_domain'

\n"; + //if (!$this->sessionid) echo "

session::create(login='$login') = '$this->sessionid': lid='$this->account_lid', domain='$this->account_domain'

\n"; return $this->sessionid; }