Sure, I will once I get some spare time.
For the time being, and to prevent the bug from showing on your sidebar, do the following:
# Open wordpress-popular-posts.php using a text editor such as Dreamweaver or Notepad.
# Find this piece of code:
$data = array(
'title' => '<a href="'.$permalink.'" title="'.$title.'">'.$title_sub.'</a>',
'summary' => $excerpt,
'stats' => $stats,
'img' => $thumb,
'id' => $p->id
);
array_push($posts_data, $data);
// PUTTING IT ALL TOGETHER
if ($instance['markup']['custom_html']) { // build custom layout
if ($instance['markup']['pattern']['active']) {
$content .= htmlspecialchars_decode($instance['markup']['post-start'], ENT_QUOTES) . htmlspecialchars_decode($this->format_content($instance['markup']['pattern']['form'], $data, $instance['rating'])) . htmlspecialchars_decode($instance['markup']['post-end'], ENT_QUOTES) . "\n";
} else {
$content .= htmlspecialchars_decode($instance['markup']['post-start'], ENT_QUOTES) . "{$thumb}<a href=\"{$permalink}\" title=\"{$title}\" class=\"wpp-post-title\">{$title_sub}</a> {$excerpt}{$stats}{$rating}" . htmlspecialchars_decode($instance['markup']['post-end'], ENT_QUOTES) . "\n";
}
} else { // build regular layout
$content .= "<li>{$thumb}<a href=\"{$permalink}\" title=\"{$title}\" class=\"wpp-post-title\">{$title_sub}</a> {$excerpt}<span class=\"post-stats\">{$stats}</span>{$rating}</li>" . "\n";
}
# … and replace it with:
$data = array(
'title' => '<a href="'.$permalink.'">'.$title_sub.'</a>',
'summary' => $excerpt,
'stats' => $stats,
'img' => $thumb,
'id' => $p->id
);
array_push($posts_data, $data);
// PUTTING IT ALL TOGETHER
if ($instance['markup']['custom_html']) { // build custom layout
if ($instance['markup']['pattern']['active']) {
$content .= htmlspecialchars_decode($instance['markup']['post-start'], ENT_QUOTES) . htmlspecialchars_decode($this->format_content($instance['markup']['pattern']['form'], $data, $instance['rating'])) . htmlspecialchars_decode($instance['markup']['post-end'], ENT_QUOTES) . "\n";
} else {
$content .= htmlspecialchars_decode($instance['markup']['post-start'], ENT_QUOTES) . "{$thumb}<a href=\"{$permalink}\" class=\"wpp-post-title\">{$title_sub}</a> {$excerpt}{$stats}{$rating}" . htmlspecialchars_decode($instance['markup']['post-end'], ENT_QUOTES) . "\n";
}
} else { // build regular layout
$content .= "<li>{$thumb}<a href=\"{$permalink}\" class=\"wpp-post-title\">{$title_sub}</a> {$excerpt}<span class=\"post-stats\">{$stats}</span>{$rating}</li>" . "\n";
}
# Save changes.