diff options
| author | sparc <sparc@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-20 15:28:20 +0000 |
|---|---|---|
| committer | sparc <sparc@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-20 15:28:20 +0000 |
| commit | d9cbaf047eb0c2a8d310b51335cf1976978fc492 (patch) | |
| tree | 05049c50efdacbcc69fedb69ccb6ac04888e95e1 /roundcubemail/program/include | |
| parent | 9b5e21c6f828be7c1eb5dee59e80dcf2d4bb850c (diff) | |
typo fix
git-svn-id: https://svn.roundcube.net/trunk@42 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_smtp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_smtp.inc b/roundcubemail/program/include/rcube_smtp.inc index bc204638b..5cea00697 100644 --- a/roundcubemail/program/include/rcube_smtp.inc +++ b/roundcubemail/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))) { |
