Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/09/2014 01:45:38 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Add brackets around a few conditional statements in bp-core-update.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-update.php

    r8565 r8566  
    164164
    165165    // Are we running an outdated version of BuddyPress?
    166     if ( ! bp_is_update() )
     166    if ( ! bp_is_update() ) {
    167167        return;
     168    }
    168169
    169170    bp_version_updater();
     
    401402
    402403    // Bail if activating from network, or bulk
    403     if ( isset( $_GET['activate-multi'] ) )
     404    if ( isset( $_GET['activate-multi'] ) ) {
    404405        return;
     406    }
    405407
    406408    // Record that this is a new installation, so we show the right
Note: See TracChangeset for help on using the changeset viewer.