I think it would be a good idea to insert a filter for formatting the title of the widget. AndI intend to use the plugin http://wordpress.org/extend/pl…..ttftitles/, and I can not without first changing the plugin code.
See my code (cforms.php):
…
Line 1350: $id = substr($widget_id, 7);
Line 1351: $no = ($options[$id]['form']=='1')?'':$options[$id]['form'];
Line 1352: $title = htmlspecialchars(stripslashes($options[$id]['title']));
Line 1354: $title = apply_filters('widget_title', $title);
Line 1355: echo $before_widget.$before_title.$title.$after_title;
…