Ticket #26701: 26701.diff
File 26701.diff, 862 bytes (added by , 11 years ago) |
---|
-
wp-includes/default-widgets.php
392 392 393 393 function __construct() { 394 394 $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML.')); 395 $control_ops = array( 'width' => 400, 'height' => 350);395 $control_ops = array( 'height' => 350 ); 396 396 parent::__construct('text', __('Text'), $widget_ops, $control_ops); 397 397 } 398 398 … … 743 743 744 744 function __construct() { 745 745 $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed.') ); 746 $control_ops = array( ' width' => 400, 'height' => 200 );746 $control_ops = array( 'height' => 200 ); 747 747 parent::__construct( 'rss', __('RSS'), $widget_ops, $control_ops ); 748 748 } 749 749