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 16:13:29 +01:00
parent f3507273e9
commit 60c55093ad
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));
/**