Make WordPress Core


Ignore:
Timestamp:
02/12/2006 07:53:23 AM (19 years ago)
Author:
ryan
Message:

Death to trailing tabs. Props Mark J. fixes #2405

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options.php

    r3413 r3517  
    2929case 'update':
    3030    $any_changed = 0;
    31    
     31
    3232    check_admin_referer();
    3333
     
    5353                if( in_array($option, $nonbools) && ( $value == '0' || $value == '') )
    5454                $value = 'closed';
    55            
     55
    5656            if( $option == 'blogdescription' || $option == 'blogname' )
    5757                if (current_user_can('unfiltered_html') == false)
    5858                    $value = wp_filter_post_kses( $value );
    59            
     59
    6060            if (update_option($option, $value) ) {
    6161                $any_changed++;
Note: See TracChangeset for help on using the changeset viewer.