aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-03-13 23:11:33 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-03-13 23:12:52 -0400
commit64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3 (patch)
tree295097401bdd3615c3b8bafe1c8ac9c7a2cf1033 /phpBB/includes/functions.php
parent4d231112b67ab714c96605233bee2ba67f56a2eb (diff)
downloadforums-64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3.tar
forums-64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3.tar.gz
forums-64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3.tar.bz2
forums-64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3.tar.xz
forums-64657ee366f3d7f7e78129cda0e6cfc1ae36d4c3.zip
[ticket/10096] Fixed whitespace in functions.php.
PHPBB3-10096
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
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))
{