Don't include HTML in gettext call. Props nbachiyski and Nazgul. fixes #4437

git-svn-id: https://develop.svn.wordpress.org/trunk@5688 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
rob1n
2007-06-12 21:48:55 +00:00
parent 547f858f1d
commit 019eff6399
2 changed files with 16 additions and 18 deletions

View File

@@ -860,7 +860,7 @@ function wp_widget_rss($args, $number = 1) {
echo "<li><a class='rsswidget' href='$link' title='$desc'>$title</a>$summary</li>";
}
} else {
echo __('<li>An error has occured; the feed is probably down. Try again later.</li>');
echo '<li>' . __( 'An error has occurred; the feed is probably down. Try again later.' ) . '</li>';
}
?>
</ul>