MDL-65884 filters: update exclusive separator characters for tags.

The previous characters mangled the output of filtered text, exhibited
in the activity names filter for activities named '-' (single hyphen).
This commit is contained in:
Paul Holden
2019-06-12 17:10:21 +01:00
parent 078699a1a5
commit ad7d0f05de
2 changed files with 32 additions and 4 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ define('TEXTFILTER_DISABLED', -9999);
* keys. It must be something rare enough to avoid having matches with
* filterobjects. MDL-18165
*/
define('TEXTFILTER_EXCL_SEPARATOR', '-%-');
define('TEXTFILTER_EXCL_SEPARATOR', chr(0x1F) . '%' . chr(0x1F));
/**