Make WordPress Core

Ticket #30799: 30799.2.diff

File 30799.2.diff, 53.4 KB (added by wonderboymusic, 10 years ago)
  • src/wp-admin/admin.php

     
    167167}
    168168
    169169$hook_suffix = '';
    170 if ( isset($page_hook) )
     170if ( isset( $page_hook ) ) {
    171171        $hook_suffix = $page_hook;
    172 else if ( isset($plugin_page) )
     172} elseif ( isset( $plugin_page ) ) {
    173173        $hook_suffix = $plugin_page;
    174 else if ( isset($pagenow) )
     174} elseif ( isset( $pagenow ) ) {
    175175        $hook_suffix = $pagenow;
     176}
    176177
    177178set_current_screen();
    178179
     
    243244        include(ABSPATH . 'wp-admin/admin-footer.php');
    244245
    245246        exit();
    246 } else if (isset($_GET['import'])) {
     247} elseif ( isset( $_GET['import'] ) ) {
    247248
    248249        $importer = $_GET['import'];
    249250
  • src/wp-admin/edit-tags.php

     
    2828if ( 'post' != $post_type ) {
    2929        $parent_file = ( 'attachment' == $post_type ) ? 'upload.php' : "edit.php?post_type=$post_type";
    3030        $submenu_file = "edit-tags.php?taxonomy=$taxonomy&post_type=$post_type";
    31 } else if ( 'link_category' == $tax->name ) {
     31} elseif ( 'link_category' == $tax->name ) {
    3232        $parent_file = 'link-manager.php';
    3333        $submenu_file = 'edit-tags.php?taxonomy=link_category';
    3434} else {
  • src/wp-admin/export.php

     
    6060
    6161        if ( ! isset( $_GET['content'] ) || 'all' == $_GET['content'] ) {
    6262                $args['content'] = 'all';
    63         } else if ( 'posts' == $_GET['content'] ) {
     63        } elseif ( 'posts' == $_GET['content'] ) {
    6464                $args['content'] = 'post';
    6565
    6666                if ( $_GET['cat'] )
     
    7676
    7777                if ( $_GET['post_status'] )
    7878                        $args['status'] = $_GET['post_status'];
    79         } else if ( 'pages' == $_GET['content'] ) {
     79        } elseif ( 'pages' == $_GET['content'] ) {
    8080                $args['content'] = 'page';
    8181
    8282                if ( $_GET['page_author'] )
  • src/wp-admin/includes/ajax-actions.php

     
    422422                        continue;
    423423                if ( !$cat_id = term_exists( $cat_name, $taxonomy->name, $parent ) )
    424424                        $cat_id = wp_insert_term( $cat_name, $taxonomy->name, array( 'parent' => $parent ) );
    425                 if ( is_wp_error( $cat_id ) )
     425                if ( is_wp_error( $cat_id ) ) {
    426426                        continue;
    427                 else if ( is_array( $cat_id ) )
     427                } elseif ( is_array( $cat_id ) ) {
    428428                        $cat_id = $cat_id['term_id'];
     429                }
    429430                $checked_categories[] = $cat_id;
    430431                if ( $parent ) // Do these all at once in a second
    431432                        continue;
     
    741742                        continue;
    742743                if ( !$cat_id = term_exists( $cat_name, 'link_category' ) )
    743744                        $cat_id = wp_insert_term( $cat_name, 'link_category' );
    744                 if ( is_wp_error( $cat_id ) )
     745                if ( is_wp_error( $cat_id ) ) {
    745746                        continue;
    746                 else if ( is_array( $cat_id ) )
     747                } elseif ( is_array( $cat_id ) ) {
    747748                        $cat_id = $cat_id['term_id'];
     749                }
    748750                $cat_name = esc_html( $cat_name );
    749751                $x->add( array(
    750752                        'what' => 'link-category',
     
    11741176                        } else {
    11751177                                wp_die( 0 );
    11761178                        }
    1177                 } else if ( !$mid = add_meta( $pid ) ) {
     1179                } elseif ( ! $mid = add_meta( $pid ) ) {
    11781180                        wp_die( __( 'Please provide a custom field value.' ) );
    11791181                }
    11801182
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    447447
    448448                        // Not looking at all comments.
    449449                        if ( $comment_status && 'all' != $comment_status ) {
    450                                 if ( 'approved' == $the_comment_status )
     450                                if ( 'approved' == $the_comment_status ) {
    451451                                        $actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=unapproved' class='vim-u vim-destructive' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
    452                                 else if ( 'unapproved' == $the_comment_status )
     452                                } elseif ( 'unapproved' == $the_comment_status ) {
    453453                                        $actions['approve'] = "<a href='$approve_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=approved' class='vim-a vim-destructive' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
     454                                }
    454455                        } else {
    455456                                $actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
    456457                                $actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
  • src/wp-admin/includes/class-wp-importer.php

     
    273273                        }
    274274
    275275                        $last_arg = $key;
    276                 } else if ( (bool) preg_match( "/^-([a-zA-Z0-9]+)/", $args[$i], $match ) ) {
     276                } elseif ( (bool) preg_match( "/^-([a-zA-Z0-9]+)/", $args[$i], $match ) ) {
    277277                        for ( $j = 0, $jl = strlen( $match[1] ); $j < $jl; $j++ ) {
    278278                                $key = $match[1]{$j};
    279279                                $out[$key] = true;
     
    280280                        }
    281281
    282282                        $last_arg = $key;
    283                 } else if ( $last_arg !== null ) {
     283                } elseif ( $last_arg !== null ) {
    284284                        $out[$last_arg] = $args[$i];
    285285                }
    286286        }
  • src/wp-admin/includes/class-wp-upgrader-skins.php

     
    447447                        unset( $install_actions['activate_plugin'] );
    448448                }
    449449
    450                 if ( 'import' == $from )
     450                if ( 'import' == $from ) {
    451451                        $install_actions['importers_page'] = '<a href="' . admin_url('import.php') . '" title="' . esc_attr__('Return to Importers') . '" target="_parent">' . __('Return to Importers') . '</a>';
    452                 else if ( $this->type == 'web' )
     452                } elseif ( $this->type == 'web' ) {
    453453                        $install_actions['plugins_page'] = '<a href="' . self_admin_url('plugin-install.php') . '" title="' . esc_attr__('Return to Plugin Installer') . '" target="_parent">' . __('Return to Plugin Installer') . '</a>';
    454                 else
     454                } else {
    455455                        $install_actions['plugins_page'] = '<a href="' . self_admin_url('plugins.php') . '" title="' . esc_attr__('Return to Plugins page') . '" target="_parent">' . __('Return to Plugins page') . '</a>';
     456                }
    456457
    457458                if ( ! $this->result || is_wp_error($this->result) ) {
    458459                        unset( $install_actions['activate_plugin'], $install_actions['network_activate'] );
     
    731732         * @param string|array|WP_Error $data
    732733         */
    733734        public function feedback( $data ) {
    734                 if ( is_wp_error( $data ) )
     735                if ( is_wp_error( $data ) ) {
    735736                        $string = $data->get_error_message();
    736                 else if ( is_array( $data ) )
     737                } elseif ( is_array( $data ) ) {
    737738                        return;
    738                 else
     739                } else {
    739740                        $string = $data;
    740 
     741                }
    741742                if ( ! empty( $this->upgrader->strings[ $string ] ) )
    742743                        $string = $this->upgrader->strings[ $string ];
    743744
  • src/wp-admin/includes/class-wp-upgrader.php

     
    431431
    432432                        if ( is_wp_error($removed) ) {
    433433                                return $removed;
    434                         } else if ( ! $removed ) {
     434                        } elseif ( ! $removed ) {
    435435                                return new WP_Error('remove_old_failed', $this->strings['remove_old_failed']);
    436436                        }
    437437                } elseif ( $args['abort_if_destination_exists'] && $wp_filesystem->exists($remote_destination) ) {
     
    637637                        $maintenance_string = '<?php $upgrading = ' . time() . '; ?>';
    638638                        $wp_filesystem->delete($file);
    639639                        $wp_filesystem->put_contents($file, $maintenance_string, FS_CHMOD_FILE);
    640                 } else if ( !$enable && $wp_filesystem->exists($file) ) {
     640                } elseif ( ! $enable && $wp_filesystem->exists( $file ) ) {
    641641                        $this->skin->feedback('maintenance_end');
    642642                        $wp_filesystem->delete($file);
    643643                }
  • src/wp-admin/includes/export.php

     
    9595                $cat = get_term( $term['term_id'], 'category' );
    9696                $cats = array( $cat->term_id => $cat );
    9797                unset( $term, $cat );
    98         } else if ( 'all' == $args['content'] ) {
     98        } elseif ( 'all' == $args['content'] ) {
    9999                $categories = (array) get_categories( array( 'get' => 'all' ) );
    100100                $tags = (array) get_tags( array( 'get' => 'all' ) );
    101101
  • src/wp-admin/includes/file.php

     
    929929                                // this means it's safe to modify & create new files via PHP.
    930930                                $method = 'direct';
    931931                                $GLOBALS['_wp_filesystem_direct_method'] = 'file_owner';
    932                         } else if ( $allow_relaxed_file_ownership ) {
     932                        } elseif ( $allow_relaxed_file_ownership ) {
    933933                                // The $context directory is writable, and $allow_relaxed_file_ownership is set, this means we can modify files
    934934                                // safely in this directory. This mode doesn't create new files, only alter existing ones.
    935935                                $method = 'direct';
     
    10381038                unset($credentials['port']);
    10391039        }
    10401040
    1041         if ( ( defined('FTP_SSH') && FTP_SSH ) || ( defined('FS_METHOD') && 'ssh2' == FS_METHOD ) )
     1041        if ( ( defined( 'FTP_SSH' ) && FTP_SSH ) || ( defined( 'FS_METHOD' ) && 'ssh2' == FS_METHOD ) ) {
    10421042                $credentials['connection_type'] = 'ssh';
    1043         else if ( (defined('FTP_SSL') && FTP_SSL) && 'ftpext' == $type ) //Only the FTP Extension understands SSL
     1043        } elseif ( ( defined( 'FTP_SSL' ) && FTP_SSL ) && 'ftpext' == $type ) { //Only the FTP Extension understands SSL
    10441044                $credentials['connection_type'] = 'ftps';
    1045         else if ( !empty($_POST['connection_type']) )
     1045        } elseif ( ! empty( $_POST['connection_type'] ) ) {
    10461046                $credentials['connection_type'] = wp_unslash( $_POST['connection_type'] );
    1047         else if ( !isset($credentials['connection_type']) ) //All else fails (And it's not defaulted to something else saved), Default to FTP
     1047        } elseif ( ! isset( $credentials['connection_type'] ) ) { //All else fails (And it's not defaulted to something else saved), Default to FTP
    10481048                $credentials['connection_type'] = 'ftp';
    1049 
     1049        }
    10501050        if ( ! $error &&
    10511051                        (
    10521052                                ( !empty($credentials['password']) && !empty($credentials['username']) && !empty($credentials['hostname']) ) ||
  • src/wp-admin/includes/media.php

     
    293293                        if ( ! empty( $meta['album'] ) && ! empty( $meta['artist'] ) ) {
    294294                                /* translators: 1: audio track title, 2: album title, 3: artist name */
    295295                                $content .= sprintf( __( '"%1$s" from %2$s by %3$s.' ), $title, $meta['album'], $meta['artist'] );
    296                         } else if ( ! empty( $meta['album'] ) ) {
     296                        } elseif ( ! empty( $meta['album'] ) ) {
    297297                                /* translators: 1: audio track title, 2: album title */
    298298                                $content .= sprintf( __( '"%1$s" from %2$s.' ), $title, $meta['album'] );
    299                         } else if ( ! empty( $meta['artist'] ) ) {
     299                        } elseif ( ! empty( $meta['artist'] ) ) {
    300300                                /* translators: 1: audio track title, 2: artist name */
    301301                                $content .= sprintf( __( '"%1$s" by %2$s.' ), $title, $meta['artist'] );
    302302                        } else {
     
    303303                                $content .= sprintf( __( '"%s".' ), $title );
    304304                        }
    305305
    306                 } else if ( ! empty( $meta['album'] ) ) {
     306                } elseif ( ! empty( $meta['album'] ) ) {
    307307
    308308                        if ( ! empty( $meta['artist'] ) ) {
    309309                                /* translators: 1: audio album title, 2: artist name */
     
    312312                                $content .= $meta['album'] . '.';
    313313                        }
    314314
    315                 } else if ( ! empty( $meta['artist'] ) ) {
     315                } elseif ( ! empty( $meta['artist'] ) ) {
    316316
    317317                        $content .= $meta['artist'] . '.';
    318318
  • src/wp-admin/includes/meta-boxes.php

     
    166166if ( 0 != $post->ID ) {
    167167        if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
    168168                $stamp = __('Scheduled for: <b>%1$s</b>');
    169         } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
     169        } elseif ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
    170170                $stamp = __('Published on: <b>%1$s</b>');
    171         } else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
     171        } elseif ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
    172172                $stamp = __('Publish <b>immediately</b>');
    173         } else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
     173        } elseif ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
    174174                $stamp = __('Schedule for: <b>%1$s</b>');
    175175        } else { // draft, 1 or more saves, date specified
    176176                $stamp = __('Publish on: <b>%1$s</b>');
  • src/wp-admin/includes/ms.php

     
    145145                                        if ( $file == '.' || $file == '..' )
    146146                                                continue;
    147147
    148                                         if ( @is_dir( $dir . DIRECTORY_SEPARATOR . $file ) )
     148                                        if ( @is_dir( $dir . DIRECTORY_SEPARATOR . $file ) ) {
    149149                                                $stack[] = $dir . DIRECTORY_SEPARATOR . $file;
    150                                         else if ( @is_file( $dir . DIRECTORY_SEPARATOR . $file ) )
     150                                        } elseif ( @is_file( $dir . DIRECTORY_SEPARATOR . $file ) ) {
    151151                                                @unlink( $dir . DIRECTORY_SEPARATOR . $file );
     152                                        }
    152153                                }
    153154                                @closedir( $dh );
    154155                        }
  • src/wp-admin/includes/plugin-install.php

     
    517517        <?php
    518518                if ( ! empty( $api->tested ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->tested ) ), $api->tested, '>' ) ) {
    519519                        echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
    520                 } else if ( ! empty( $api->requires ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->requires ) ), $api->requires, '<' ) ) {
     520                } elseif ( ! empty( $api->requires ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->requires ) ), $api->requires, '<' ) ) {
    521521                        echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been marked as compatible</strong> with your version of WordPress.') . '</p></div>';
    522522                }
    523523
  • src/wp-admin/includes/plugin.php

     
    16521652                else
    16531653                        if ( isset( $admin_page_hooks[$parent] ))
    16541654                                $page_type = $admin_page_hooks[$parent];
    1655         } else if ( isset( $admin_page_hooks[$parent] ) ) {
     1655        } elseif ( isset( $admin_page_hooks[$parent] ) ) {
    16561656                $page_type = $admin_page_hooks[$parent];
    16571657        }
    16581658
     
    17131713                                        return true;
    17141714                                else
    17151715                                        return false;
    1716                         } else if ( $submenu_array[2] == $pagenow ) {
     1716                        } elseif ( $submenu_array[2] == $pagenow ) {
    17171717                                if ( current_user_can( $submenu_array[1] ))
    17181718                                        return true;
    17191719                                else
  • src/wp-admin/includes/taxonomy.php

     
    6666 */
    6767function wp_create_categories( $categories, $post_id = '' ) {
    6868        $cat_ids = array ();
    69         foreach ($categories as $category) {
    70                 if ($id = category_exists($category))
     69        foreach ( $categories as $category ) {
     70                if ( $id = category_exists( $category ) ) {
    7171                        $cat_ids[] = $id;
    72                 else
    73                         if ($id = wp_create_category($category))
    74                                 $cat_ids[] = $id;
     72                } elseif ( $id = wp_create_category( $category ) ) {
     73                        $cat_ids[] = $id;
     74                }
    7575        }
    7676
    7777        if ( $post_id )
  • src/wp-admin/includes/template.php

     
    18481848                foreach ( $other_attributes as $attribute => $value ) {
    18491849                        $attributes .= $attribute . '="' . esc_attr( $value ) . '" '; // Trailing space is important
    18501850                }
    1851         } else if ( !empty( $other_attributes ) ) { // Attributes provided as a string
     1851        } elseif ( ! empty( $other_attributes ) ) { // Attributes provided as a string
    18521852                $attributes = $other_attributes;
    18531853        }
    18541854
  • src/wp-admin/includes/theme.php

     
    167167                        if ( ! current_user_can('update_themes') ) {
    168168                                $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.' ) . '</strong></p>',
    169169                                        $theme_name, esc_url( $details_url ), esc_attr( $theme['Name'] ), $update['new_version'] );
    170                         } else if ( empty( $update['package'] ) ) {
     170                        } elseif ( empty( $update['package'] ) ) {
    171171                                $html = sprintf( '<p><strong>' . __( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this theme.</em>' ) . '</strong></p>',
    172172                                        $theme_name, esc_url( $details_url ), esc_attr( $theme['Name'] ), $update['new_version'] );
    173173                        } else {
  • src/wp-admin/includes/update.php

     
    278278        if ( is_network_admin() || !is_multisite() ) {
    279279                echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
    280280
    281                 if ( ! current_user_can('update_plugins') )
     281                if ( ! current_user_can( 'update_plugins' ) ) {
    282282                        printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version );
    283                 else if ( empty($r->package) )
     283                } elseif ( empty($r->package) ) {
    284284                        printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version );
    285                 else
     285                } else {
    286286                        printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s">update now</a>.'), $plugin_name, esc_url($details_url), esc_attr($plugin_name), $r->new_version, wp_nonce_url( self_admin_url('update.php?action=upgrade-plugin&plugin=') . $file, 'upgrade-plugin_' . $file) );
    287 
     287                }
    288288                /**
    289289                 * Fires at the end of the update message container in each
    290290                 * row of the plugins list table.
     
    367367        $wp_list_table = _get_list_table('WP_MS_Themes_List_Table');
    368368
    369369        echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
    370         if ( ! current_user_can('update_themes') )
     370        if ( ! current_user_can('update_themes') ) {
    371371                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r->new_version );
    372         else if ( empty( $r['package'] ) )
     372        } elseif ( empty( $r['package'] ) ) {
    373373                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a>. <em>Automatic update is unavailable for this theme.</em>'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'] );
    374         else
     374        } else {
    375375                printf( __('There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s details</a> or <a href="%5$s">update now</a>.'), $theme['Name'], esc_url($details_url), esc_attr($theme['Name']), $r['new_version'], wp_nonce_url( self_admin_url('update.php?action=upgrade-theme&theme=') . $theme_key, 'upgrade-theme_' . $theme_key) );
    376 
     376        }
    377377        /**
    378378         * Fires at the end of the update message container in each
    379379         * row of the themes list table.
  • src/wp-admin/includes/upgrade.php

     
    7474                $user_id = wp_create_user($user_name, $user_password, $user_email);
    7575                update_user_option($user_id, 'default_password_nag', true, true);
    7676                $email_password = true;
    77         } else if ( !$user_id ) {
     77        } elseif ( ! $user_id ) {
    7878                // Password has been provided
    7979                $message = '<em>'.__('Your chosen password.').'</em>';
    8080                $user_id = wp_create_user($user_name, $user_password, $user_email);
     
    769769                        if ( 'static' == $status ) {
    770770                                $status = 'publish';
    771771                                $type = 'page';
    772                         } else if ( 'attachment' == $status ) {
     772                        } elseif ( 'attachment' == $status ) {
    773773                                $status = 'inherit';
    774774                                $type = 'attachment';
    775775                        }
     
    16451645
    16461646        // Create a tablename index for an array ($cqueries) of queries
    16471647        foreach($queries as $qry) {
    1648                 if (preg_match("|CREATE TABLE ([^ ]*)|", $qry, $matches)) {
     1648                if ( preg_match( "|CREATE TABLE ([^ ]*)|", $qry, $matches ) ) {
    16491649                        $cqueries[ trim( $matches[1], '`' ) ] = $qry;
    16501650                        $for_update[$matches[1]] = 'Created table '.$matches[1];
    1651                 } else if (preg_match("|CREATE DATABASE ([^ ]*)|", $qry, $matches)) {
    1652                         array_unshift($cqueries, $qry);
    1653                 } else if (preg_match("|INSERT INTO ([^ ]*)|", $qry, $matches)) {
     1651                } elseif ( preg_match( "|CREATE DATABASE ([^ ]*)|", $qry, $matches ) ) {
     1652                        array_unshift( $cqueries, $qry );
     1653                } elseif ( preg_match( "|INSERT INTO ([^ ]*)|", $qry, $matches ) ) {
    16541654                        $iqueries[] = $qry;
    1655                 } else if (preg_match("|UPDATE ([^ ]*)|", $qry, $matches)) {
     1655                } elseif ( preg_match( "|UPDATE ([^ ]*)|", $qry, $matches ) ) {
    16561656                        $iqueries[] = $qry;
    16571657                } else {
    16581658                        // Unrecognized query type
     
    18041804                                $index_string = '';
    18051805                                if ($index_name == 'PRIMARY') {
    18061806                                        $index_string .= 'PRIMARY ';
    1807                                 } else if($index_data['unique']) {
     1807                                } elseif ( $index_data['unique'] ) {
    18081808                                        $index_string .= 'UNIQUE ';
    18091809                                }
    18101810                                $index_string .= 'KEY ';
  • src/wp-admin/install.php

     
    254254                        // TODO: poka-yoke
    255255                        display_setup_form( __( 'Your passwords do not match. Please try again.' ) );
    256256                        $error = true;
    257                 } else if ( empty( $admin_email ) ) {
     257                } elseif ( empty( $admin_email ) ) {
    258258                        // TODO: poka-yoke
    259259                        display_setup_form( __( 'You must provide an email address.' ) );
    260260                        $error = true;
  • src/wp-admin/menu-header.php

     
    174174                                                $class[] = 'current';
    175175                                // If plugin_page is set the parent must either match the current page or not physically exist.
    176176                                // This allows plugin pages with the same hook to exist under different parents.
    177                                 } else if (
     177                                } elseif (
    178178                                        ( ! isset( $plugin_page ) && $self == $sub_item[2] ) ||
    179179                                        ( isset( $plugin_page ) && $plugin_page == $sub_item[2] && ( $item[2] == $self_type || $item[2] == $self || file_exists($menu_file) === false ) )
    180180                                ) {
  • src/wp-admin/options-permalink.php

     
    151151<div id="message" class="updated"><p><?php
    152152if ( ! is_multisite() ) {
    153153        if ( $iis7_permalinks ) {
    154                 if ( $permalink_structure && ! $usingpi && ! $writable )
     154                if ( $permalink_structure && ! $usingpi && ! $writable ) {
    155155                        _e('You should update your web.config now.');
    156                 else if ( $permalink_structure && ! $usingpi && $writable )
     156                } elseif ( $permalink_structure && ! $usingpi && $writable ) {
    157157                        _e('Permalink structure updated. Remove write access on web.config file now!');
    158                 else
     158                } else {
    159159                        _e('Permalink structure updated.');
     160                }
    160161        } elseif ( $is_nginx ) {
    161162                _e('Permalink structure updated.');
    162163        } else {
  • src/wp-comments-post.php

     
    121121if ( get_option('require_name_email') && !$user->exists() ) {
    122122        if ( 6 > strlen( $comment_author_email ) || '' == $comment_author ) {
    123123                wp_die( __( '<strong>ERROR</strong>: please fill the required fields (name, email).' ), 200 );
    124         } else if ( ! is_email( $comment_author_email ) ) {
     124        } elseif ( ! is_email( $comment_author_email ) ) {
    125125                wp_die( __( '<strong>ERROR</strong>: please enter a valid email address.' ), 200 );
    126126        }
    127127}
  • src/wp-includes/bookmark.php

     
    386386                } else {
    387387                        $value = esc_attr($value);
    388388                }
    389         } else if ( 'db' == $context ) {
     389        } elseif ( 'db' == $context ) {
    390390                /** This filter is documented in wp-includes/post.php */
    391391                $value = apply_filters( "pre_$field", $value );
    392392        } else {
     
    393393                /** This filter is documented in wp-includes/post.php */
    394394                $value = apply_filters( $field, $value, $bookmark_id, $context );
    395395
    396                 if ( 'attribute' == $context )
    397                         $value = esc_attr($value);
    398                 else if ( 'js' == $context )
    399                         $value = esc_js($value);
     396                if ( 'attribute' == $context ) {
     397                        $value = esc_attr( $value );
     398                } elseif ( 'js' == $context ) {
     399                        $value = esc_js( $value );
     400                }
    400401        }
    401402
    402403        return $value;
  • src/wp-includes/class-http.php

     
    893893
    894894                $r = wp_parse_args( $args, $defaults );
    895895
    896                 if ( isset($r['headers']['User-Agent']) ) {
     896                if ( isset( $r['headers']['User-Agent'] ) ) {
    897897                        $r['user-agent'] = $r['headers']['User-Agent'];
    898                         unset($r['headers']['User-Agent']);
    899                 } else if ( isset($r['headers']['user-agent']) ) {
     898                        unset( $r['headers']['User-Agent'] );
     899                } elseif ( isset( $r['headers']['user-agent'] ) ) {
    900900                        $r['user-agent'] = $r['headers']['user-agent'];
    901                         unset($r['headers']['user-agent']);
     901                        unset( $r['headers']['user-agent'] );
    902902                }
    903903
    904904                // Construct Cookie: header if any cookies are set.
     
    13581358
    13591359                $r = wp_parse_args( $args, $defaults );
    13601360
    1361                 if ( isset($r['headers']['User-Agent']) ) {
     1361                if ( isset( $r['headers']['User-Agent'] ) ) {
    13621362                        $r['user-agent'] = $r['headers']['User-Agent'];
    1363                         unset($r['headers']['User-Agent']);
    1364                 } else if ( isset($r['headers']['user-agent']) ) {
     1363                        unset( $r['headers']['User-Agent'] );
     1364                } elseif ( isset( $r['headers']['user-agent'] ) ) {
    13651365                        $r['user-agent'] = $r['headers']['user-agent'];
    1366                         unset($r['headers']['user-agent']);
     1366                        unset( $r['headers']['user-agent'] );
    13671367                }
    13681368
    13691369                // Construct Cookie: header if any cookies are set.
     
    22442244                if ( is_array( $headers ) ) {
    22452245                        if ( array_key_exists('content-encoding', $headers) && ! empty( $headers['content-encoding'] ) )
    22462246                                return true;
    2247                 } else if ( is_string( $headers ) ) {
     2247                } elseif ( is_string( $headers ) ) {
    22482248                        return ( stripos($headers, 'content-encoding:') !== false );
    22492249                }
    22502250
  • src/wp-includes/class-wp-xmlrpc-server.php

     
    32113211
    32123212                if ( !$user ) {
    32133213                        $logged_in = false;
    3214                         if ( $allow_anon && get_option('comment_registration') )
     3214                        if ( $allow_anon && get_option('comment_registration') ) {
    32153215                                return new IXR_Error( 403, __( 'You must be registered to comment' ) );
    3216                         else if ( !$allow_anon )
     3216                        } elseif ( ! $allow_anon ) {
    32173217                                return $this->error;
     3218                        }
    32183219                } else {
    32193220                        $logged_in = true;
    32203221                }
     
    48734874                $tags_input = isset( $content_struct['mt_keywords'] ) ? $content_struct['mt_keywords'] : null;
    48744875
    48754876                if ( ('publish' == $post_status) ) {
    4876                         if ( ( 'page' == $post_type ) && !current_user_can('publish_pages') )
    4877                                 return new IXR_Error(401, __('Sorry, you do not have the right to publish this page.'));
    4878                         else if ( !current_user_can('publish_posts') )
    4879                                 return new IXR_Error(401, __('Sorry, you do not have the right to publish this post.'));
     4877                        if ( ( 'page' == $post_type ) && ! current_user_can( 'publish_pages' ) ) {
     4878                                return new IXR_Error( 401, __( 'Sorry, you do not have the right to publish this page.' ) );
     4879                        } elseif ( ! current_user_can( 'publish_posts' ) ) {
     4880                                return new IXR_Error( 401, __( 'Sorry, you do not have the right to publish this post.' ) );
     4881                        }
    48804882                }
    48814883
    48824884                if ( $post_more )
  • src/wp-includes/class-wp.php

     
    135135                $this->query_vars = array();
    136136                $post_type_query_vars = array();
    137137
    138                 if ( is_array($extra_query_vars) )
     138                if ( is_array( $extra_query_vars ) ) {
    139139                        $this->extra_query_vars = & $extra_query_vars;
    140                 else if (! empty($extra_query_vars))
    141                         parse_str($extra_query_vars, $this->extra_query_vars);
    142 
     140                } elseif ( ! empty( $extra_query_vars ) ) {
     141                        parse_str( $extra_query_vars, $this->extra_query_vars );
     142                }
    143143                // Process PATH_INFO, REQUEST_URI, and 404 for permalinks.
    144144
    145145                // Fetch the rewrite rules.
     
    357357                        } elseif ( in_array( $status, array( 403, 500, 502, 503 ) ) ) {
    358358                                $exit_required = true;
    359359                        }
    360                 } else if ( empty($this->query_vars['feed']) ) {
     360                } elseif ( empty( $this->query_vars['feed'] ) ) {
    361361                        $headers['Content-Type'] = get_option('html_type') . '; charset=' . get_option('blog_charset');
    362362                } else {
    363363                        // We're showing a feed, so WP is indeed the only thing that last changed
  • src/wp-includes/comment-template.php

     
    11681168
    11691169        if ( $user_ID ) {
    11701170                $comment_args['include_unapproved'] = array( $user_ID );
    1171         } else if ( ! empty( $comment_author_email ) ) {
     1171        } elseif ( ! empty( $comment_author_email ) ) {
    11721172                $comment_args['include_unapproved'] = array( $comment_author_email );
    11731173        }
    11741174
  • src/wp-includes/comment.php

     
    506506                // Disable ORDER BY with 'none', an empty array, or boolean false.
    507507                if ( in_array( $this->query_vars['orderby'], array( 'none', array(), false ), true ) ) {
    508508                        $orderby = '';
    509                 } else if ( ! empty( $this->query_vars['orderby'] ) ) {
     509                } elseif ( ! empty( $this->query_vars['orderby'] ) ) {
    510510                        $ordersby = is_array( $this->query_vars['orderby'] ) ?
    511511                                $this->query_vars['orderby'] :
    512512                                preg_split( '/[,\s]/', $this->query_vars['orderby'] );
     
    22282228
    22292229        if ( ! isset( $data['comment_approved'] ) ) {
    22302230                $data['comment_approved'] = 1;
    2231         } else if ( 'hold' == $data['comment_approved'] ) {
     2231        } elseif ( 'hold' == $data['comment_approved'] ) {
    22322232                $data['comment_approved'] = 0;
    2233         } else if ( 'approve' == $data['comment_approved'] ) {
     2233        } elseif ( 'approve' == $data['comment_approved'] ) {
    22342234                $data['comment_approved'] = 1;
    22352235        }
    22362236
  • src/wp-includes/date.php

     
    425425                                $valid = false;
    426426                        }
    427427
    428                 } else if ( $day_exists && $month_exists ) {
     428                } elseif ( $day_exists && $month_exists ) {
    429429                        /*
    430430                         * 2. checking day, month combination
    431431                         * We use 2012 because, as a leap year, it's the most permissive.
     
    607607                foreach ( $query as $key => $clause ) {
    608608                        if ( 'relation' === $key ) {
    609609                                $relation = $query['relation'];
    610                         } else if ( is_array( $clause ) ) {
     610                        } elseif ( is_array( $clause ) ) {
    611611
    612612                                // This is a first-order clause.
    613613                                if ( $this->is_first_order_clause( $clause ) ) {
     
    616616                                        $where_count = count( $clause_sql['where'] );
    617617                                        if ( ! $where_count ) {
    618618                                                $sql_chunks['where'][] = '';
    619                                         } else if ( 1 === $where_count ) {
     619                                        } elseif ( 1 === $where_count ) {
    620620                                                $sql_chunks['where'][] = $clause_sql['where'][0];
    621621                                        } else {
    622622                                                $sql_chunks['where'][] = '( ' . implode( ' AND ', $clause_sql['where'] ) . ' )';
     
    725725                if ( isset( $query['year'] ) && $value = $this->build_value( $compare, $query['year'] ) )
    726726                        $where_parts[] = "YEAR( $column ) $compare $value";
    727727
    728                 if ( isset( $query['month'] ) && $value = $this->build_value( $compare, $query['month'] ) )
     728                if ( isset( $query['month'] ) && $value = $this->build_value( $compare, $query['month'] ) ) {
    729729                        $where_parts[] = "MONTH( $column ) $compare $value";
    730                 else if ( isset( $query['monthnum'] ) && $value = $this->build_value( $compare, $query['monthnum'] ) )
     730                } elseif ( isset( $query['monthnum'] ) && $value = $this->build_value( $compare, $query['monthnum'] ) ) {
    731731                        $where_parts[] = "MONTH( $column ) $compare $value";
    732 
    733                 if ( isset( $query['week'] ) && false !== ( $value = $this->build_value( $compare, $query['week'] ) ) )
     732                }
     733                if ( isset( $query['week'] ) && false !== ( $value = $this->build_value( $compare, $query['week'] ) ) ) {
    734734                        $where_parts[] = _wp_mysql_week( $column ) . " $compare $value";
    735                 else if ( isset( $query['w'] ) && false !== ( $value = $this->build_value( $compare, $query['w'] ) ) )
     735                } elseif ( isset( $query['w'] ) && false !== ( $value = $this->build_value( $compare, $query['w'] ) ) ) {
    736736                        $where_parts[] = _wp_mysql_week( $column ) . " $compare $value";
    737 
     737                }
    738738                if ( isset( $query['dayofyear'] ) && $value = $this->build_value( $compare, $query['dayofyear'] ) )
    739739                        $where_parts[] = "DAYOFYEAR( $column ) $compare $value";
    740740
     
    858858                                        'year' => intval( $matches[1] ),
    859859                                );
    860860
    861                         } else if ( preg_match( '/^(\d{4})\-(\d{2})$/', $datetime, $matches ) ) {
     861                        } elseif ( preg_match( '/^(\d{4})\-(\d{2})$/', $datetime, $matches ) ) {
    862862                                // Y-m
    863863                                $datetime = array(
    864864                                        'year'  => intval( $matches[1] ),
     
    865865                                        'month' => intval( $matches[2] ),
    866866                                );
    867867
    868                         } else if ( preg_match( '/^(\d{4})\-(\d{2})\-(\d{2})$/', $datetime, $matches ) ) {
     868                        } elseif ( preg_match( '/^(\d{4})\-(\d{2})\-(\d{2})$/', $datetime, $matches ) ) {
    869869                                // Y-m-d
    870870                                $datetime = array(
    871871                                        'year'  => intval( $matches[1] ),
     
    873873                                        'day'   => intval( $matches[3] ),
    874874                                );
    875875
    876                         } else if ( preg_match( '/^(\d{4})\-(\d{2})\-(\d{2}) (\d{2}):(\d{2})$/', $datetime, $matches ) ) {
     876                        } elseif ( preg_match( '/^(\d{4})\-(\d{2})\-(\d{2}) (\d{2}):(\d{2})$/', $datetime, $matches ) ) {
    877877                                // Y-m-d H:i
    878878                                $datetime = array(
    879879                                        'year'   => intval( $matches[1] ),
  • src/wp-includes/deprecated.php

     
    23962396
    23972397        if ( !$cur )
    23982398                $wpdb->insert($wpdb->usermeta, compact('user_id', 'meta_key', 'meta_value') );
    2399         else if ( $cur->meta_value != $meta_value )
     2399        elseif ( $cur->meta_value != $meta_value )
    24002400                $wpdb->update($wpdb->usermeta, compact('meta_value'), compact('user_id', 'meta_key') );
    24012401        else
    24022402                return false;
  • src/wp-includes/formatting.php

     
    15021502                                // or close to be safe $tag = '/' . $tag;
    15031503                        }
    15041504                        // if stacktop value = tag close value then pop
    1505                         else if ( $tagstack[$stacksize - 1] == $tag ) { // found closing tag
     1505                        elseif ( $tagstack[$stacksize - 1] == $tag ) { // found closing tag
    15061506                                $tag = '</' . $tag . '>'; // Close Tag
    15071507                                // Pop
    15081508                                array_pop( $tagstack );
     
    23372337
    23382338                return gmdate('Y-m-d H:i:s', $timestamp);
    23392339
    2340         } else if ($timezone == 'user') {
     2340        } elseif ($timezone == 'user') {
    23412341                return preg_replace('#([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(Z|[\+|\-][0-9]{2,4}){0,1}#', '$1-$2-$3 $4:$5:$6', $date_string);
    23422342        }
    23432343}
  • src/wp-includes/functions.php

     
    14371437        $ref = false;
    14381438        if ( ! empty( $_REQUEST['_wp_http_referer'] ) )
    14391439                $ref = wp_unslash( $_REQUEST['_wp_http_referer'] );
    1440         else if ( ! empty( $_SERVER['HTTP_REFERER'] ) )
     1440        elseif ( ! empty( $_SERVER['HTTP_REFERER'] ) )
    14411441                $ref = wp_unslash( $_SERVER['HTTP_REFERER'] );
    14421442
    14431443        if ( $ref && $ref !== wp_unslash( $_SERVER['REQUEST_URI'] ) )
     
    16701670 */
    16711671function win_is_writable( $path ) {
    16721672
    1673         if ( $path[strlen( $path ) - 1] == '/' ) // if it looks like a directory, check a random file within the directory
     1673        if ( $path[strlen( $path ) - 1] == '/' ) { // if it looks like a directory, check a random file within the directory
    16741674                return win_is_writable( $path . uniqid( mt_rand() ) . '.tmp');
    1675         else if ( is_dir( $path ) ) // If it's a directory (and not a file) check a random file within the directory
     1675        } elseif ( is_dir( $path ) ) { // If it's a directory (and not a file) check a random file within the directory
    16761676                return win_is_writable( $path . '/' . uniqid( mt_rand() ) . '.tmp' );
    1677 
     1677        }
    16781678        // check tmp file for read/write capabilities
    16791679        $should_delete_tmp_file = !file_exists( $path );
    16801680        $f = @fopen( $path, 'a' );
  • src/wp-includes/l10n.php

     
    594594
    595595        if ( false !== $plugin_rel_path ) {
    596596                $path = WP_PLUGIN_DIR . '/' . trim( $plugin_rel_path, '/' );
    597         } else if ( false !== $deprecated ) {
     597        } elseif ( false !== $deprecated ) {
    598598                _deprecated_argument( __FUNCTION__, '2.7' );
    599599                $path = ABSPATH . trim( $deprecated, '/' );
    600600        } else {
  • src/wp-includes/load.php

     
    5959                        $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
    6060                }
    6161                // IIS Isapi_Rewrite
    62                 else if ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
     62                elseif ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
    6363                        $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
    6464                } else {
    6565                        // Use ORIG_PATH_INFO if there is no PATH_INFO
     
    427427                }
    428428
    429429                $first_init = true;
    430         } else if ( ! wp_using_ext_object_cache() && file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
     430        } elseif ( ! wp_using_ext_object_cache() && file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
    431431                /*
    432432                 * Sometimes advanced-cache.php can load object-cache.php before
    433433                 * it is loaded here. This breaks the function_exists check above
  • src/wp-includes/media.php

     
    19841984 * @return array Empty array on failure. List of taxonomies on success.
    19851985 */
    19861986function get_attachment_taxonomies($attachment) {
    1987         if ( is_int( $attachment ) )
    1988                 $attachment = get_post($attachment);
    1989         else if ( is_array($attachment) )
     1987        if ( is_int( $attachment ) ) {
     1988                $attachment = get_post( $attachment );
     1989        } elseif ( is_array( $attachment ) ) {
    19901990                $attachment = (object) $attachment;
    1991 
     1991        }
    19921992        if ( ! is_object($attachment) )
    19931993                return array();
    19941994
  • src/wp-includes/meta.php

     
    995995                        if ( 'relation' === $key ) {
    996996                                $relation = $query;
    997997
    998                         } else if ( ! is_array( $query ) ) {
     998                        } elseif ( ! is_array( $query ) ) {
    999999                                continue;
    10001000
    10011001                        // First-order clause.
    1002                         } else if ( $this->is_first_order_clause( $query ) ) {
     1002                        } elseif ( $this->is_first_order_clause( $query ) ) {
    10031003                                if ( isset( $query['value'] ) && array() === $query['value'] ) {
    10041004                                        unset( $query['value'] );
    10051005                                }
     
    10291029                 * This value will not actually be used to join clauses, but it
    10301030                 * simplifies the logic around combining key-only queries.
    10311031                 */
    1032                 } else if ( 1 === count( $clean_queries ) ) {
     1032                } elseif ( 1 === count( $clean_queries ) ) {
    10331033                        $clean_queries['relation'] = 'OR';
    10341034
    10351035                // Default to AND.
     
    10931093                                $primary_meta_query,
    10941094                                $existing_meta_query,
    10951095                        );
    1096                 } else if ( ! empty( $primary_meta_query ) ) {
     1096                } elseif ( ! empty( $primary_meta_query ) ) {
    10971097                        $meta_query = array(
    10981098                                $primary_meta_query,
    10991099                        );
    1100                 } else if ( ! empty( $existing_meta_query ) ) {
     1100                } elseif ( ! empty( $existing_meta_query ) ) {
    11011101                        $meta_query = $existing_meta_query;
    11021102                }
    11031103
     
    12541254                foreach ( $query as $key => &$clause ) {
    12551255                        if ( 'relation' === $key ) {
    12561256                                $relation = $query['relation'];
    1257                         } else if ( is_array( $clause ) ) {
     1257                        } elseif ( is_array( $clause ) ) {
    12581258
    12591259                                // This is a first-order clause.
    12601260                                if ( $this->is_first_order_clause( $clause ) ) {
     
    12631263                                        $where_count = count( $clause_sql['where'] );
    12641264                                        if ( ! $where_count ) {
    12651265                                                $sql_chunks['where'][] = '';
    1266                                         } else if ( 1 === $where_count ) {
     1266                                        } elseif ( 1 === $where_count ) {
    12671267                                                $sql_chunks['where'][] = $clause_sql['where'][0];
    12681268                                        } else {
    12691269                                                $sql_chunks['where'][] = '( ' . implode( ' AND ', $clause_sql['where'] ) . ' )';
     
    14921492                                $compatible_compares = array( '=', 'IN', 'BETWEEN', 'LIKE', 'REGEXP', 'RLIKE', '>', '>=', '<', '<=' );
    14931493
    14941494                        // Clauses joined by AND with "negative" operators share a join only if they also share a key.
    1495                         } else if ( isset( $sibling['key'] ) && isset( $clause['key'] ) && $sibling['key'] === $clause['key'] ) {
     1495                        } elseif ( isset( $sibling['key'] ) && isset( $clause['key'] ) && $sibling['key'] === $clause['key'] ) {
    14961496                                $compatible_compares = array( '!=', 'NOT IN', 'NOT LIKE' );
    14971497                        }
    14981498
  • src/wp-includes/nav-menu.php

     
    806806                                'post_type' == $menu_item_type
    807807                        ) {
    808808                                $menu_item_ids[] = (int) $menu_item->ID;
    809                         } else if (
     809                        } elseif (
    810810                                'taxonomy' == $object_type &&
    811811                                'taxonomy' == $menu_item_type &&
    812812                                get_post_meta( $menu_item->ID, '_menu_item_object', true ) == $taxonomy
  • src/wp-includes/plugin.php

     
    327327        if ( isset( $wp_filter[ $tag ]) ) {
    328328                if ( false === $priority ) {
    329329                        $wp_filter[ $tag ] = array();
    330                 } else if ( isset( $wp_filter[ $tag ][ $priority ] ) ) {
     330                } elseif ( isset( $wp_filter[ $tag ][ $priority ] ) ) {
    331331                        $wp_filter[ $tag ][ $priority ] = array();
    332332                }
    333333        }
     
    900900
    901901                        return $obj_idx;
    902902                }
    903         } else if ( is_string($function[0]) ) {
     903        } elseif ( is_string( $function[0] ) ) {
    904904                // Static Calling
    905905                return $function[0] . '::' . $function[1];
    906906        }
  • src/wp-includes/post-template.php

     
    129129                         */
    130130                        $protected_title_format = apply_filters( 'protected_title_format', __( 'Protected: %s' ), $post );
    131131                        $title = sprintf( $protected_title_format, $title );
    132                 } else if ( isset( $post->post_status ) && 'private' == $post->post_status ) {
     132                } elseif ( isset( $post->post_status ) && 'private' == $post->post_status ) {
    133133
    134134                        /**
    135135                         * Filter the text prepended to the post title of private posts.
     
    566566                        if ( is_array( $post_type ) )
    567567                                $post_type = reset( $post_type );
    568568                        $classes[] = 'post-type-archive-' . sanitize_html_class( $post_type );
    569                 } else if ( is_author() ) {
     569                } elseif ( is_author() ) {
    570570                        $author = $wp_query->get_queried_object();
    571571                        $classes[] = 'author';
    572572                        if ( isset( $author->user_nicename ) ) {
  • src/wp-includes/post.php

     
    21842184                } else {
    21852185                        $value = esc_attr($value);
    21862186                }
    2187         } else if ( 'db' == $context ) {
     2187        } elseif ( 'db' == $context ) {
    21882188                if ( $prefixed ) {
    21892189
    21902190                        /**
     
    22522252
    22532253        if ( 'attribute' == $context )
    22542254                $value = esc_attr($value);
    2255         else if ( 'js' == $context )
     2255        elseif ( 'js' == $context )
    22562256                $value = esc_js($value);
    22572257
    22582258        return $value;
     
    39073907                } else {
    39083908                        $post_categories = array();
    39093909                }
    3910         } else if ( 1 == count($post_categories) && '' == reset($post_categories) ) {
     3910        } elseif ( 1 == count( $post_categories ) && '' == reset( $post_categories ) ) {
    39113911                return true;
    39123912        }
    39133913
  • src/wp-includes/query.php

     
    16541654                                $this->is_date = true;
    16551655                                if ( strlen($qv['m']) > 9 ) {
    16561656                                        $this->is_time = true;
    1657                                 } else if ( strlen($qv['m']) > 7 ) {
     1657                                } elseif ( strlen( $qv['m'] ) > 7 ) {
    16581658                                        $this->is_day = true;
    1659                                 } else if ( strlen($qv['m']) > 5 ) {
     1659                                } elseif ( strlen( $qv['m'] ) > 5 ) {
    16601660                                        $this->is_month = true;
    16611661                                } else {
    16621662                                        $this->is_year = true;
     
    19561956                                        $tag = sanitize_term_field('slug', $tag, 0, 'post_tag', 'db');
    19571957                                        $q['tag_slug__in'][] = $tag;
    19581958                                }
    1959                         } else if ( preg_match('/[+\r\n\t ]+/', $q['tag']) || !empty($q['cat']) ) {
     1959                        } elseif ( preg_match('/[+\r\n\t ]+/', $q['tag'] ) || ! empty( $q['cat'] ) ) {
    19601960                                $tags = preg_split('/[+\r\n\t ]+/', $q['tag']);
    19611961                                foreach ( (array) $tags as $tag ) {
    19621962                                        $tag = sanitize_term_field('slug', $tag, 0, 'post_tag', 'db');
     
    24672467                $q['posts_per_page'] = (int) $q['posts_per_page'];
    24682468                if ( $q['posts_per_page'] < -1 )
    24692469                        $q['posts_per_page'] = abs($q['posts_per_page']);
    2470                 else if ( $q['posts_per_page'] == 0 )
     2470                elseif ( $q['posts_per_page'] == 0 )
    24712471                        $q['posts_per_page'] = 1;
    24722472
    24732473                if ( !isset($q['comments_per_page']) || $q['comments_per_page'] == 0 )
     
    43504350                        return true;
    43514351                } elseif ( in_array( $page_obj->post_title, $page ) ) {
    43524352                        return true;
    4353                 } else if ( in_array( $page_obj->post_name, $page ) ) {
     4353                } elseif ( in_array( $page_obj->post_name, $page ) ) {
    43544354                        return true;
    43554355                } else {
    43564356                        foreach ( $page as $pagepath ) {
     
    45684568                 */
    45694569                if ( $post->ID === get_queried_object_id() && ( $this->is_page() || $this->is_single() ) ) {
    45704570                        $more = 1;
    4571                 } else if ( $this->is_feed() ) {
     4571                } elseif ( $this->is_feed() ) {
    45724572                        $more = 1;
    45734573                } else {
    45744574                        $more = 0;
  • src/wp-includes/rewrite.php

     
    13761376                                $rewrite = array_merge($rewrite, array($pagematch => $pagequery));
    13771377
    13781378                        //only on pages with comments add ../comment-page-xx/
    1379                         if ( EP_PAGES & $ep_mask || EP_PERMALINK & $ep_mask )
     1379                        if ( EP_PAGES & $ep_mask || EP_PERMALINK & $ep_mask ) {
    13801380                                $rewrite = array_merge($rewrite, array($commentmatch => $commentquery));
    1381                         else if ( EP_ROOT & $ep_mask && get_option('page_on_front') )
     1381                        } elseif ( EP_ROOT & $ep_mask && get_option('page_on_front') ) {
    13821382                                $rewrite = array_merge($rewrite, array($rootcommentmatch => $rootcommentquery));
    1383 
     1383                        }
    13841384                        //do endpoints
    13851385                        if ( $endpoints ) {
    13861386                                foreach ( (array) $ep_query_append as $regex => $ep) {
  • src/wp-includes/template.php

     
    467467                if ( file_exists(STYLESHEETPATH . '/' . $template_name)) {
    468468                        $located = STYLESHEETPATH . '/' . $template_name;
    469469                        break;
    470                 } else if ( file_exists(TEMPLATEPATH . '/' . $template_name) ) {
     470                } elseif ( file_exists(TEMPLATEPATH . '/' . $template_name) ) {
    471471                        $located = TEMPLATEPATH . '/' . $template_name;
    472472                        break;
    473473                }
  • src/wp-includes/user.php

     
    630630                                $orderby = 'ID';
    631631                        } elseif ( 'meta_value' == $qv['orderby'] ) {
    632632                                $orderby = "$wpdb->usermeta.meta_value";
    633                         } else if ( 'include' === $qv['orderby'] && ! empty( $include ) ) {
     633                        } elseif ( 'include' === $qv['orderby'] && ! empty( $include ) ) {
    634634                                // Sanitized earlier.
    635635                                $include_sql = implode( ',', $include );
    636636                                $orderby = "FIELD( $wpdb->users.ID, $include_sql )";
     
    15141514                        $value = esc_html( $value ); // textarea_escaped?
    15151515                else
    15161516                        $value = esc_attr($value);
    1517         } else if ( 'db' == $context ) {
     1517        } elseif ( 'db' == $context ) {
    15181518                if ( $prefixed ) {
    15191519                        /** This filter is documented in wp-includes/post.php */
    15201520                        $value = apply_filters( "pre_{$field}", $value );
     
    15591559        if ( 'user_url' == $field )
    15601560                $value = esc_url($value);
    15611561
    1562         if ( 'attribute' == $context )
    1563                 $value = esc_attr($value);
    1564         else if ( 'js' == $context )
    1565                 $value = esc_js($value);
    1566 
     1562        if ( 'attribute' == $context ) {
     1563                $value = esc_attr( $value );
     1564        } elseif ( 'js' == $context ) {
     1565                $value = esc_js( $value );
     1566        }
    15671567        return $value;
    15681568}
    15691569
  • src/wp-includes/wp-db.php

     
    13661366                        while ( mysqli_more_results( $this->dbh ) ) {
    13671367                                mysqli_next_result( $this->dbh );
    13681368                        }
    1369                 } else if ( is_resource( $this->result ) ) {
     1369                } elseif ( is_resource( $this->result ) ) {
    13701370                        mysql_free_result( $this->result );
    13711371                }
    13721372        }
     
    14351435
    14361436                                if ( $this->has_connected ) {
    14371437                                        $attempt_fallback = false;
    1438                                 } else if ( defined( 'WP_USE_EXT_MYSQL' ) && ! WP_USE_EXT_MYSQL ) {
     1438                                } elseif ( defined( 'WP_USE_EXT_MYSQL' ) && ! WP_USE_EXT_MYSQL ) {
    14391439                                        $attempt_fallback = false;
    1440                                 } else if ( ! function_exists( 'mysql_connect' ) ) {
     1440                                } elseif ( ! function_exists( 'mysql_connect' ) ) {
    14411441                                        $attempt_fallback = false;
    14421442                                }
    14431443
     
    14751475" ), htmlspecialchars( $this->dbhost, ENT_QUOTES ) ), 'db_connect_fail' );
    14761476
    14771477                        return false;
    1478                 } else if ( $this->dbh ) {
     1478                } elseif ( $this->dbh ) {
    14791479                        $this->has_connected = true;
    14801480                        $this->set_charset( $this->dbh );
    14811481                        $this->ready = true;
     
    16731673                                        $this->last_result[$num_rows] = $row;
    16741674                                        $num_rows++;
    16751675                                }
    1676                         } else if ( is_resource( $this->result ) ) {
     1676                        } elseif ( is_resource( $this->result ) ) {
    16771677                                while ( $row = @mysql_fetch_object( $this->result ) ) {
    16781678                                        $this->last_result[$num_rows] = $row;
    16791679                                        $num_rows++;
  • src/wp-login.php

     
    276276
    277277        if ( empty( $_POST['user_login'] ) ) {
    278278                $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or e-mail address.'));
    279         } else if ( strpos( $_POST['user_login'], '@' ) ) {
     279        } elseif ( strpos( $_POST['user_login'], '@' ) ) {
    280280                $user_data = get_user_by( 'email', trim( $_POST['user_login'] ) );
    281281                if ( empty( $user_data ) )
    282282                        $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
     
    333333         */
    334334        $allow = apply_filters( 'allow_password_reset', true, $user_data->ID );
    335335
    336         if ( ! $allow )
    337                 return new WP_Error('no_password_reset', __('Password reset is not allowed for this user'));
    338         else if ( is_wp_error($allow) )
     336        if ( ! $allow ) {
     337                return new WP_Error( 'no_password_reset', __('Password reset is not allowed for this user') );
     338        } elseif ( is_wp_error( $allow ) ) {
    339339                return $allow;
     340        }
    340341
    341342        // Generate something random for a password reset key.
    342343        $key = wp_generate_password( 20, false );