Make WordPress Core

Changeset 12345

Timestamp:
12/08/2009 09:29:12 PM (15 years ago)
Author:
markjaquith
Message:

Revision 12345. Nothing but whitespace fixes. That's how I roll.

File:
1 edited

Legend:

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

    r12339 r12345  
    369369        $template_files = array_unique($template_files);
    370370        $stylesheet_files = array_unique($stylesheet_files);
    371                
     371           
    372372        $template_dir = dirname($template_files[0]);
    373373        $stylesheet_dir = dirname($stylesheet_files[0]);
     
    503503function register_theme_directory( $directory) {
    504504    global $wp_theme_directories;
    505    
     505
    506506    /* If this folder does not exist, return and do not register */
    507507    if ( !file_exists( $directory ) )
     
    510510    else
    511511        $registered_directory = $directory;
    512    
     512
    513513    /* If this folder does not exist, return and do not register */
    514514    if ( !file_exists( $registered_directory ) )
     
    625625        $theme_root = WP_CONTENT_DIR . '/themes';
    626626    }
    627    
     627
    628628    return apply_filters( 'theme_root', $theme_root );
    629629}
Note: See TracChangeset for help on using the changeset viewer.