Changeset 10912 for trunk/wp-includes/default-widgets.php
- Timestamp:
- 04/11/2009 02:37:24 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/default-widgets.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-widgets.php
r10896 r10912 141 141 <p> 142 142 <label for="<?php echo $this->get_field_id('category'); ?>"> 143 <select id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>" style="width: 97%;" />143 <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>"> 144 144 <option value=""><?php _e('All Links'); ?></option> 145 145 <?php … … 150 150 } 151 151 ?> 152 </select></label><br /> 152 </select></label></p> 153 <p> 153 154 <label for="<?php echo $this->get_field_id('images'); ?>"> 154 155 <input class="checkbox" type="checkbox" <?php checked($instance['images'], true) ?> id="<?php echo $this->get_field_id('images'); ?>" name="<?php echo $this->get_field_name('images'); ?>" /> <?php _e('Show Link Image'); ?></label><br /> … … 185 186 echo $after_widget; 186 187 } 188 189 function form( $instance ) { ?> 190 <input name="<?php echo $this->get_field_name('title'); ?>" type="hidden" value="" /> 191 <?php 192 } 193 187 194 } 188 195 … … 883 890 $items = 10; 884 891 $error = false; 885 $number = ' %i%';892 $number = '__i__'; 886 893 $show_summary = 0; 887 894 $show_author = 0;
Note: See TracChangeset
for help on using the changeset viewer.