From e96d84bdc8443d9e5ba5bde028f20711678e0e0a Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 3 Jan 2012 09:56:19 +0000 Subject: - Move some checks into login() method git-svn-id: https://svn.roundcube.net/trunk@5690 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcmail.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'roundcubemail/program/include') diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index deaaabf54..fbf691a51 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -750,11 +750,15 @@ class rcmail * @param string IMAP user name * @param string IMAP password * @param string IMAP host + * * @return boolean True on success, False on failure */ function login($username, $pass, $host=NULL) { - $user = NULL; + if (empty($username)) { + return false; + } + $config = $this->config->all(); if (!$host) -- cgit v1.2.3