The smilies were coming broken in comment notification emails. Fixed it by modifying db_input.php
Fix committed to devel and stable. Please confirm.
For those who want to fix manually.....
Edit db_input.php
Replace (around line 152)
$mail_body = "<p>" . bb_decode(process_smilies($msg_body)) . "</p>\n\r ".$lang_db_input_php['email_comment_body'] . " " . $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/').$redirect;
with
$mail_body = "<p>" . bb_decode(process_smilies($msg_body, $CONFIG['ecards_more_pic_target'])) . "</p>\n\r ".$lang_db_input_php['email_comment_body'] . " " . $CONFIG['ecards_more_pic_target'].(substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/').$redirect;
Abbas
That fixed it for anonymous users only, for logged in users a similar line further down required modification also.
ref: http://forum.coppermine-gallery.net/index.php?topic=28072.0
Marking as fixed.
Oops.....i missed that. Anyways thanks Nibbler.