Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (16 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-widgets.php

    r11432 r11450  
    190190        echo $after_widget;
    191191    }
    192    
     192
    193193    function form( $instance ) {
    194194        $instance = wp_parse_args( (array) $instance, array( 'title' => '') );
     
    198198<?php
    199199    }
    200    
     200
    201201    function update( $new_instance, $old_instance ) {
    202202        $instance = $old_instance;
     
    204204        $instance['title'] = strip_tags($new_instance['title']);
    205205        return $instance;
    206     }   
    207    
     206    }
     207
    208208}
    209209
Note: See TracChangeset for help on using the changeset viewer.