Browse Source

escape_markup_modifiers: make it case insensitive

pull/40/head
Michael Foster 11 years ago
parent
commit
b2d5ec253b
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1631,7 +1631,7 @@ function markup(&$body, $track_cites = false) {
}
function escape_markup_modifiers($string) {
return preg_replace('@<tinyboard ([\w\s]+)>@m', '<tinyboard escape $1>', $string);
return preg_replace('@<tinyboard ([\w\s]+)>@mi', '<tinyboard escape $1>', $string);
}
function utf8tohtml($utf8) {

Loading…
Cancel
Save