summaryrefslogtreecommitdiff
path: root/program/lib/enriched.inc
diff options
context:
space:
mode:
Diffstat (limited to 'program/lib/enriched.inc')
-rw-r--r--program/lib/enriched.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/enriched.inc b/program/lib/enriched.inc
index 2435a8233..e3abd8c4f 100644
--- a/program/lib/enriched.inc
+++ b/program/lib/enriched.inc
@@ -45,7 +45,7 @@ function enriched_convert_formatting($body){
'</indentright>'=>'</span>');
while(list($find,$replace)=each($a)){
- $body = eregi_replace($find,$replace,$body);
+ $body = preg_replace('#'.$find.'#i', $replace, $body);
}
return $body;
}