1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-25 20:44:01 +01:00

Merge branch 'ticket/14426' into 3.2.x

This commit is contained in:
Marc Alexander 2016-04-03 10:27:46 +02:00
commit 3281826a51

View File

@ -226,6 +226,11 @@ class bbcode
),
'preg' => array(
'#\[quote(?:="(.*?)")?:$uid\]((?!\[quote(?:=".*?")?:$uid\]).)?#is' => function ($match) {
if (!isset($match[2]))
{
$match[2] = '';
}
return $this->bbcode_second_pass_quote($match[1], $match[2]);
},
)