diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-07-29 21:38:18 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-07-29 21:38:18 +0200 |
commit | e086d4039e0811aa8eac92ac83f2ca94d494f85b (patch) | |
tree | 4ad18e7a627fee851e95909f6f5e547ab98cebc9 /phpBB | |
parent | d4e623ffee8f0bcbde7e68440977d5fe15cf07b8 (diff) | |
parent | 51205febe37e0df26eafa966ddcf32015ef62d6e (diff) | |
download | forums-e086d4039e0811aa8eac92ac83f2ca94d494f85b.tar forums-e086d4039e0811aa8eac92ac83f2ca94d494f85b.tar.gz forums-e086d4039e0811aa8eac92ac83f2ca94d494f85b.tar.bz2 forums-e086d4039e0811aa8eac92ac83f2ca94d494f85b.tar.xz forums-e086d4039e0811aa8eac92ac83f2ca94d494f85b.zip |
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB')
-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 0b5721f216..bfde77cd0f 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2352,7 +2352,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa } // Check form key - if ($password && !check_form_key($form_name)) + if ($password && !defined('IN_CHECK_BAN') && !check_form_key($form_name)) { $result = array( 'status' => false, |