Make RSS and text widget controls the same width. Props mdawaffe. fixes #6205

git-svn-id: http://svn.automattic.com/wordpress/trunk@7278 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-03-14 06:30:41 +00:00
parent c3b5c2cb4e
commit e077b57335
1 changed files with 2 additions and 2 deletions

View File

@ -647,7 +647,7 @@ function wp_widget_text_register() {
if ( !$options = get_option('widget_text') )
$options = array();
$widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML'));
$control_ops = array('width' => 460, 'height' => 350, 'id_base' => 'text');
$control_ops = array('width' => 400, 'height' => 350, 'id_base' => 'text');
$name = __('Text');
$id = false;
@ -1300,7 +1300,7 @@ function wp_widget_rss_register() {
if ( !$options = get_option('widget_rss') )
$options = array();
$widget_ops = array('classname' => 'widget_rss', 'description' => __( 'Entries from any RSS or Atom feed' ));
$control_ops = array('width' => 410, 'height' => 200, 'id_base' => 'rss');
$control_ops = array('width' => 400, 'height' => 200, 'id_base' => 'rss');
$name = __('RSS');
$id = false;