From b2d5ec253b53345f46f6e1a246a725167d4ab814 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Sat, 17 Aug 2013 17:41:22 +1000 Subject: [PATCH] escape_markup_modifiers: make it case insensitive --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 09933ade..50937a29 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1631,7 +1631,7 @@ function markup(&$body, $track_cites = false) { } function escape_markup_modifiers($string) { - return preg_replace('@@m', '', $string); + return preg_replace('@@mi', '', $string); } function utf8tohtml($utf8) {