Make WordPress Core


Ignore:
Timestamp:
01/18/2010 08:34:48 PM (15 years ago)
Author:
ryan
Message:

Coding standards, space after if

File:
1 edited

Legend:

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

    r12733 r12752  
    295295if ( is_multisite() && is_dir( ABSPATH . LANGDIR ) && $dh = opendir( ABSPATH . LANGDIR ) )
    296296    while( ( $lang_file = readdir( $dh ) ) !== false )
    297         if( substr( $lang_file, -3 ) == '.mo' )
     297        if ( substr( $lang_file, -3 ) == '.mo' )
    298298            $lang_files[] = $lang_file;
    299299$lang = get_option('WPLANG');
    300300
    301 if( is_array($lang_files) && !empty($lang_files) ) {
     301if ( is_array($lang_files) && !empty($lang_files) ) {
    302302    ?>
    303303    <tr valign="top">
Note: See TracChangeset for help on using the changeset viewer.