Improve whitespace display from/to BBCode/HTML

2022.09-rc
Hypolite Petovan 2018-09-16 09:05:54 -04:00
rodzic a5bf37fd98
commit 96ed7525b7
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -348,7 +348,7 @@ class BBCode extends BaseObject
*/
public static function toPlaintext($text, $keep_urls = true)
{
$naked_text = preg_replace('/\[(.+?)\]/','', $text);
$naked_text = preg_replace('/\[(.+?)\]\s*/','', $text);
if (!$keep_urls) {
$naked_text = preg_replace('#https?\://[^\s<]+[^\s\.\)]#i', '', $naked_text);
}

Wyświetl plik

@ -131,7 +131,7 @@ class HTML
$prefix = '[code=' . $matches[1] . ']';
}
$codeblocks[] = $prefix . trim($matches[2]) . '[/code]';
$codeblocks[] = $prefix . PHP_EOL . trim($matches[2]) . PHP_EOL . '[/code]';
return $return;
},
$message