mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 00:07:44 +02:00
empty is only accepting vars
git-svn-id: file:///svn/phpbb/trunk@5867 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -915,7 +915,8 @@ class smtp_class
|
|||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
$err_msg = '';
|
$err_msg = '';
|
||||||
$local_host = (empty(php_uname('n'))) ? 'localhost' : php_uname('n');
|
$local_host = php_uname('n');
|
||||||
|
$local_host = (empty($local_host)) ? 'localhost' : $local_host;
|
||||||
|
|
||||||
// If we are authenticating through pop-before-smtp, we
|
// If we are authenticating through pop-before-smtp, we
|
||||||
// have to login ones before we get authenticated
|
// have to login ones before we get authenticated
|
||||||
|
Reference in New Issue
Block a user