In the get-recent-comment.php code, the html for the sidebar comments widgets is retuned on line 955. it looks like this:
return $before_widget . $before_title . kjgrc_get_option(“grc”,”sidebar_title”) . $after_title .
‘<div id=”get_recent_comments_wrap”>
‘ .
There is something wrong with the $before_title and $after_title variables. I changed the code to this:
return $before_widget . ‘<h3>’ . kjgrc_get_option(“grc”,”sidebar_title”) . ‘</h3>’ .'<div id=”get_recent_comments_wrap”>
‘ .
I eliminated the problem variables and put in <h3> html because my theme uses them for sidebar titles. Perhaps yours uses another heading.
Hope that helps.