Bug #21865 » patch_13060_2.diff
t3lib/class.t3lib_htmlmail.php (working copy) | ||
---|---|---|
$c = count($tags);
|
||
foreach($tags as $tag) {
|
||
$c--;
|
||
$regexp .= '<' . sql_regcase($tag) . "[[:space:]]" . (($c) ? '|' : '');
|
||
$regexp .= '<' . $tag . '[[:space:]]' . (($c) ? '|' : '');
|
||
}
|
||
return $regexp . '/';
|
||
return $regexp . '/i';
|
||
}
|
||