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/update.php

    r12383 r12752  
    4141
    4242        check_admin_referer('activate-plugin_' . $plugin);
    43         if( ! isset($_GET['failure']) && ! isset($_GET['success']) ) {
     43        if ( ! isset($_GET['failure']) && ! isset($_GET['success']) ) {
    4444            wp_redirect( 'update.php?action=activate-plugin&failure=true&plugin=' . $plugin . '&_wpnonce=' . $_GET['_wpnonce'] );
    4545            activate_plugin($plugin);
     
    4848        }
    4949        iframe_header( __('Plugin Reactivation'), true );
    50         if( isset($_GET['success']) )
     50        if ( isset($_GET['success']) )
    5151            echo '<p>' . __('Plugin reactivated successfully.') . '</p>';
    5252
    53         if( isset($_GET['failure']) ){
     53        if ( isset($_GET['failure']) ){
    5454            echo '<p>' . __('Plugin failed to reactivate due to a fatal error.') . '</p>';
    5555
Note: See TracChangeset for help on using the changeset viewer.