aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
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 d5cb2ce071..4672751232 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2457,7 +2457,7 @@ function login_forum_box($forum_data)
}
$db->sql_freeresult($result);
- if ($password == $forum_data['forum_password'])
+ if (phpbb_check_hash($password, $forum_data['forum_password']))
{
$sql_ary = array(
'forum_id' => (int) $forum_data['forum_id'],