mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Merge branch '3.1.x' into 3.2.x
This commit is contained in:
commit
08c6f56f4b
1 changed files with 1 additions and 1 deletions
|
@ -1602,7 +1602,7 @@ class session
|
|||
|
||||
$this->data = array_merge($this->data, $sql_ary);
|
||||
|
||||
if ($this->data['user_id'] != ANONYMOUS && !empty($config['new_member_post_limit']) && $this->data['user_new'] && $config['new_member_post_limit'] <= $this->data['user_posts'])
|
||||
if ($this->data['user_id'] != ANONYMOUS && isset($config['new_member_post_limit']) && $this->data['user_new'] && $config['new_member_post_limit'] <= $this->data['user_posts'])
|
||||
{
|
||||
$this->leave_newly_registered();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue