From fdff34093d479f1a9cb98107b68eb9137278b181 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Tue, 03 Jan 2012 04:56:19 -0500
Subject: [PATCH] - Move some checks into login() method
---
index.php | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/index.php b/index.php
index 6f761a4..a2d012c 100644
--- a/index.php
+++ b/index.php
@@ -97,8 +97,7 @@
$OUTPUT->show_message("cookiesdisabled", 'warning');
}
else if ($auth['valid'] && !$auth['abort'] &&
- !empty($auth['host']) && !empty($auth['user']) &&
- $RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])
+ $RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])
) {
// create new session ID, don't destroy the current session
// it was destroyed already by $RCMAIL->kill_session() above
--
Gitblit v1.9.1