Ticket #42001: 42001.1.patch
File 42001.1.patch, 1.1 KB (added by , 7 years ago) |
---|
-
src/wp-includes/widgets/class-wp-widget-custom-html.php
47 47 'customize_selective_refresh' => true, 48 48 ); 49 49 $control_ops = array( 50 'width' => 400,51 'height' => 350,50 'width' => 250, 51 'height' => 250, 52 52 ); 53 53 parent::__construct( 'custom_html', __( 'Custom HTML' ), $widget_ops, $control_ops ); 54 54 } -
src/wp-includes/widgets/class-wp-widget-text.php
36 36 'customize_selective_refresh' => true, 37 37 ); 38 38 $control_ops = array( 39 'width' => 400,40 'height' => 350,39 'width' => 250, 40 'height' => 250, 41 41 ); 42 42 parent::__construct( 'text', __( 'Text' ), $widget_ops, $control_ops ); 43 43 }