diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-03-14 13:58:21 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-03-14 13:58:21 +0100 |
commit | c75b299eb160fd330476ea91d5236558a3a59ed7 (patch) | |
tree | e9ff62db132e43857a3fe920279fda2cb11e8822 /phpBB/includes/functions.php | |
parent | 4f1056ad72bdfb81a8d2d1c494b88b6d93aaf7c0 (diff) | |
parent | 64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3 (diff) | |
download | forums-c75b299eb160fd330476ea91d5236558a3a59ed7.tar forums-c75b299eb160fd330476ea91d5236558a3a59ed7.tar.gz forums-c75b299eb160fd330476ea91d5236558a3a59ed7.tar.bz2 forums-c75b299eb160fd330476ea91d5236558a3a59ed7.tar.xz forums-c75b299eb160fd330476ea91d5236558a3a59ed7.zip |
Merge branch 'ticket/p/10096' into develop-olympus
* ticket/p/10096:
[ticket/10096] Fixed whitespace in functions.php.
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 80b51f80ae..2fc7ca6903 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4261,7 +4261,7 @@ function phpbb_http_login($param) if (!is_null($username) && is_null($password) && strpos($username, 'Basic ') === 0) { list($username, $password) = explode(':', base64_decode(substr($username, 6)), 2); - } + } if (!is_null($username) && !is_null($password)) { |