Changeset 11450 for trunk/wp-includes/default-widgets.php
- Timestamp:
- 05/24/2009 11:47:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-widgets.php
r11432 r11450 190 190 echo $after_widget; 191 191 } 192 192 193 193 function form( $instance ) { 194 194 $instance = wp_parse_args( (array) $instance, array( 'title' => '') ); … … 198 198 <?php 199 199 } 200 200 201 201 function update( $new_instance, $old_instance ) { 202 202 $instance = $old_instance; … … 204 204 $instance['title'] = strip_tags($new_instance['title']); 205 205 return $instance; 206 } 207 206 } 207 208 208 } 209 209
Note: See TracChangeset
for help on using the changeset viewer.