diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-14 21:04:34 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-14 21:04:34 -0700 |
commit | 5c8a911c9334ad9b24a5c9a2e6e928519a586b92 (patch) | |
tree | de22b935fd9d95b7081a4039b34aa9ed4651267c /include/bbcode.php | |
parent | 2cc1844d979a73e07efd242368ff1bf3651369c0 (diff) | |
download | volse-hubzilla-5c8a911c9334ad9b24a5c9a2e6e928519a586b92.tar.gz volse-hubzilla-5c8a911c9334ad9b24a5c9a2e6e928519a586b92.tar.bz2 volse-hubzilla-5c8a911c9334ad9b24a5c9a2e6e928519a586b92.zip |
this looks like a slightly cleaner solution to the unicode dl issue
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 04c5b6fdc..d38397be7 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -383,7 +383,7 @@ function bb_definitionList($match) { $eatLeadingSpaces = '(?: |[ \t])*'; // prevent spaces infront of [*= from adding another line to the previous element $listElements = preg_replace('/^(\n|<br \/>)/', '', $match[2]); // ltrim the first newline $listElements = preg_replace( - '/' . $eatLeadingSpaces . '\[\*=([\p{Any}]*?)(?<!\\\)\]/uism', + '/' . $eatLeadingSpaces . '\[\*=([[:print:]]*?)(?<!\\\)\]/uism', $closeDescriptionTag . '<dt>$1</dt><dd>', $listElements ); |