Add paragraph to BBCode conversion of [quote]

This commit is contained in:
Hypolite Petovan 2018-02-12 22:37:30 -05:00
parent 724a58e79a
commit 4bc1672921
1 changed files with 1 additions and 1 deletions

View File

@ -1727,7 +1727,7 @@ class BBCode
$endlessloop = 0;
while ((strpos($text, "[/quote]")!== false) && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) {
$text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
"<br /><strong class=".'"author"'.">" . $t_wrote . "</strong><blockquote>$2</blockquote>",
"<p><strong class=".'"author"'.">" . $t_wrote . "</strong></p><blockquote>$2</blockquote>",
$text);
}