Make WordPress Core


Ignore:
Timestamp:
10/15/2009 08:26:21 PM (16 years ago)
Author:
ryan
Message:

Associate subdirector of whitespace trims trailing whites with pinking shears.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r12023 r12042  
    31733173
    31743174function get_site_option( $key, $default = false, $use_cache = true ) {
    3175     // Allow plugins to short-circuit site options. 
    3176     $pre = apply_filters( 'pre_site_option_' . $key, false ); 
    3177     if ( false !== $pre ) 
    3178         return $pre; 
    3179  
     3175    // Allow plugins to short-circuit site options.
     3176    $pre = apply_filters( 'pre_site_option_' . $key, false );
     3177    if ( false !== $pre )
     3178        return $pre;
     3179
    31803180    $value = get_option($key, $default);
    3181  
     3181
    31823182    return apply_filters( 'site_option_' . $key, $value );
    31833183}
Note: See TracChangeset for help on using the changeset viewer.