From c6a25c828d5ec887f586926c180236a2f0da804a Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Wed, 19 Feb 2014 11:53:09 +0000 Subject: [PATCH] fix exception logging; fix filter_var usage git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1646 a1433add-5e2c-0410-b055-b7f2511e0802 --- ADDITIONS/squirrelmail-plugin/functions.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ADDITIONS/squirrelmail-plugin/functions.inc.php b/ADDITIONS/squirrelmail-plugin/functions.inc.php index 5db9d0cc..cf25ff72 100644 --- a/ADDITIONS/squirrelmail-plugin/functions.inc.php +++ b/ADDITIONS/squirrelmail-plugin/functions.inc.php @@ -51,7 +51,7 @@ function get_xmlrpc() { } catch(Exception $e) { //var_dump($client->getHttpClient()->getLastResponse()->getBody()); - error_log("Failed to login to xmlrpc instance - " . $e->getMessage); + error_log("Failed to login to xmlrpc instance - " . $e->getMessage()); die('Failed to login to xmlrpc instance'); } if($success) { @@ -91,8 +91,8 @@ $optmode = 'display'; // Action: Checks if email is valid and returns TRUE if this is the case. // Call: check_email (string email) // -function check_email ($email) { - $return = filter_var('validate_email', $email); +function check_email($email) { + $return = filter_var($email, FILTER_VALIDATE_EMAIL); if($return === false) { return false; }