diff --git a/includes/admin/converters/SimplePress5.php b/includes/admin/converters/SimplePress5.php
index f20eb8b..1b1c7c4 100644
|
a
|
b
|
class SimplePress5 extends BBP_Converter_Base { |
| 524 | 524 | // Replace '<strong>username said </strong>' with '@username said:' |
| 525 | 525 | $simplepress_markup = preg_replace ( '/\<strong\>(.*?)\ said\ \<\/strong\>/', '@$1 said:', $simplepress_markup ); |
| 526 | 526 | |
| | 527 | // Replace '<p> </p>' with '<p> </p>' |
| | 528 | $simplepress_markup = preg_replace ( '/\n( |[\s\p{Z}\xA0\x{00A0}]+)\r/', '<br>', $simplepress_markup ); |
| | 529 | |
| 527 | 530 | // Now that SimplePress' custom HTML codes have been stripped put the cleaned HTML back in $field |
| 528 | 531 | $field = $simplepress_markup; |
| 529 | 532 | |