diff options
author | svncommit <devs@roundcube.net> | 2005-10-20 15:28:20 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2005-10-20 15:28:20 +0000 |
commit | 4301b06027a81941ef418418775797b2b926a8b6 (patch) | |
tree | 0976de53a2805fd21ed8dca872d579af6df7ab77 | |
parent | 702f291838d61238a54b07bd721ec7f23f9ffb76 (diff) |
typo fix
-rw-r--r-- | program/include/rcube_smtp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc index bc204638b..5cea00697 100644 --- a/program/include/rcube_smtp.inc +++ b/program/include/rcube_smtp.inc @@ -86,7 +86,7 @@ function smtp_mail($from, $recipients, $headers, $body) else $smtp_pass = $CONFIG['smtp_pass']; - $smtp_auth_type = smpty($CONFIG['smtp_auth_type']) ? NULL : $CONFIG['smtp_auth_type']; + $smtp_auth_type = empty($CONFIG['smtp_auth_type']) ? NULL : $CONFIG['smtp_auth_type']; if (PEAR::isError($SMTP_CONN->auth($smtp_user, $smtp_pass, $smtp_auth_type))) { |