Typo fix from nerrad. fixes #6216
git-svn-id: http://svn.automattic.com/wordpress/trunk@7277 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
66e96b088c
commit
c3b5c2cb4e
|
@ -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 ));
|
||||
|
|
Loading…
Reference in New Issue