mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-04 07:53:06 +02:00
Merge branch '3.3.x'
This commit is contained in:
commit
e87635a209
@ -530,13 +530,16 @@ class acp_board
|
||||
|
||||
if ($submit)
|
||||
{
|
||||
if (strpos($data['type'], 'password') === 0 && $config_value === '********')
|
||||
if (isset($data['type']) && strpos($data['type'], 'password') === 0 && $config_value === '********')
|
||||
{
|
||||
// Do not update password fields if the content is ********,
|
||||
// because that is the password replacement we use to not
|
||||
// send the password to the output
|
||||
/**
|
||||
* Do not update password fields if the content is ********,
|
||||
* because that is the password replacement we use to not
|
||||
* send the password to the output
|
||||
*/
|
||||
continue;
|
||||
}
|
||||
|
||||
$config->set($config_name, $config_value);
|
||||
|
||||
if ($config_name == 'allow_quick_reply' && isset($_POST['allow_quick_reply_enable']))
|
||||
|
Loading…
x
Reference in New Issue
Block a user