mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge branch '3.1.x' into 3.2.x
* 3.1.x: [ticket/14806] Fix ACP test emails authentication failure
This commit is contained in:
commit
c46efa461e
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ if (!defined('IN_PHPBB'))
|
||||||
class acp_board
|
class acp_board
|
||||||
{
|
{
|
||||||
var $u_action;
|
var $u_action;
|
||||||
var $new_config = array();
|
var $new_config;
|
||||||
|
|
||||||
function main($id, $mode)
|
function main($id, $mode)
|
||||||
{
|
{
|
||||||
|
@ -490,7 +490,7 @@ class acp_board
|
||||||
$user->add_lang($display_vars['lang']);
|
$user->add_lang($display_vars['lang']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->new_config = $config;
|
$this->new_config = clone $config;
|
||||||
$cfg_array = (isset($_REQUEST['config'])) ? $request->variable('config', array('' => ''), true) : $this->new_config;
|
$cfg_array = (isset($_REQUEST['config'])) ? $request->variable('config', array('' => ''), true) : $this->new_config;
|
||||||
$error = array();
|
$error = array();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue