Habe ein Problem mit der bezahlten Ajax Shoutbox.

Sie funzt solange bis ich einen Smilie einfügen will.
das is die Fehlermeldung:
PHP-Code:
Warning:  ereg_replace() [function.ereg-replace]: REG_EPAREN in /www/htdocs/w00cfcd0/meinedomain.de/content/shout.php on line 90 
Das is die Codezeile:
PHP-Code:
//smilies einfügen
$sql2 db_query("SELECT * FROM addon_shoutbox_smilies ORDER BY ID");
while (
$smilies mysql_fetch_array($sql2))
{
$text ereg_replace($smilies['pic_id'],'<img src="'.$smilies['img_src'].'">',$text);
}


if(
$text != '')
{
echo 
'<div style="background-color:#'.$config['style_bar'].'; margin-top:5px;"><font color="#'.$config['style_bar_font_color'].'">Von '.$shouts['uid'].' am '.date('j.n.y - H:i:s',$shouts['time']).' </font></div><div style="background-color:#'.$config['style_background'].';"><font color="#'.$config['style_text_font_color'].'">'.$text.'</font></div>';
}
}
echo 
'</div>';
foot();
db_close()
?> 
Denke es liegt an der veralteten ereg_replace funktion. jemand ne Ahnung wie man das beheben kann?