Index: t3lib/class.t3lib_htmlmail.php
===================================================================
--- t3lib/class.t3lib_htmlmail.php (revision 7568)
+++ t3lib/class.t3lib_htmlmail.php (working copy)
@@ -1419,9 +1419,9 @@
$c = count($tags);
foreach($tags as $tag) {
$c--;
- $regexp .= '<' . sql_regcase($tag) . "[[:space:]]" . (($c) ? '|' : '');
+ $regexp .= '<' . $tag . '[[:space:]]' . (($c) ? '|' : '');
}
- return $regexp . '/';
+ return $regexp . '/i';
}