all repos — wp-ffpc @ d64f49958f0f988b4022e75361f50527688c4ca4

fixed grouping of if statement for $_GET of self::key_precache_disabled
Harold Kyle harold@boxcarpress.com
Tue, 09 Apr 2013 13:19:02 -0400
commit

d64f49958f0f988b4022e75361f50527688c4ca4

parent

c3329aa4d1e94aa4b8df5b329488d29d8024524d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M wp-ffpc-class.phpwp-ffpc-class.php

@@ -264,7 +264,7 @@

/** * if options were saved, display saved message */ - if (isset($_GET[ self::key_precache ]) && $_GET[ self::key_precache ]=='true' || $this->status == 4) : ?> + if ( ( isset($_GET[ self::key_precache ]) && $_GET[ self::key_precache ]=='true' ) || $this->status == 4) : ?> <div class='updated settings-error'><p><strong><?php _e( 'Precache process was started, it is now running in the background, please be patient, it may take a very long time to finish.' , $this->plugin_constant ) ?></strong></p></div> <?php endif;