Typo fix from nerrad. fixes #6216

git-svn-id: https://develop.svn.wordpress.org/trunk@7277 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-14 06:27:25 +00:00
parent c446cee03a
commit df34bb4747
1 changed files with 1 additions and 1 deletions

View File

@ -1307,7 +1307,7 @@ function wp_widget_rss_register() {
foreach ( array_keys($options) as $o ) {
// Old widgets can have null values for some reason
if ( !isset($options[$o]['url']) || !isset($options[$o]['title']) || !isset($options[$o]['items']) )
contine;
continue;
$id = "rss-$o"; // Never never never translate an id
wp_register_sidebar_widget($id, $name, 'wp_widget_rss', $widget_ops, array( 'number' => $o ));
wp_register_widget_control($id, $name, 'wp_widget_rss_control', $control_ops, array( 'number' => $o ));