formatting fixes
authorKevin Cristiano <kcristiano@tadpole.cc>
Sat, 2 May 2015 14:53:16 +0000 (10:53 -0400)
committerkurund <kurund@civicrm.org>
Thu, 14 May 2015 06:40:40 +0000 (12:10 +0530)
CRM/Core/Permission/WordPress.php
CRM/Utils/System/WordPress.php

index 0e392ae8f739bcd166e83b182887fda13fccb3e2..8c5e6cf57c78c7ac08960c8ab2a6ef766881c4f0 100644 (file)
@@ -66,7 +66,7 @@ class CRM_Core_Permission_WordPress extends CRM_Core_Permission_Base {
       return TRUE;
     }
 
-    if (!defined( ABSPATH ) || !defined( WPINC ) ) {
+    if (!defined(ABSPATH) || !defined(WPINC)) {
       require_once 'CRM/Utils/System.php';
       CRM_Utils_System::loadBootStrap();
     }
index ba161e69d2eab88d9633a706051bb4babf74a77c..35739d2e4f94b0fde21dc79ad3db7cb14f2d2cb2 100644 (file)
@@ -342,13 +342,15 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
     if (!$cmsRootPath) {
       CRM_Core_Error::fatal("Could not find the install directory for WordPress");
     }
-    $path = CRM_Core_BAO_Setting::getItem( 'CiviCRM Preferences', 'wpLoadPhp' );
-    if ( ! empty( $path ) ) {
+    $path = CRM_Core_BAO_Setting::getItem('CiviCRM Preferences', 'wpLoadPhp');
+    if (!empty($path)) {
       require_once $path;
-    } elseif ( file_exists( $cmsRootPath . DIRECTORY_SEPARATOR . 'wp-load.php' ) ) {
+    }
+    elseif (file_exists($cmsRootPath . DIRECTORY_SEPARATOR . 'wp-load.php')) {
       require_once $cmsRootPath . DIRECTORY_SEPARATOR . 'wp-load.php';
-    } else {
-      CRM_Core_Error::fatal( "Could not find the bootstrap file for WordPress" );
+    }
+    else {
+      CRM_Core_Error::fatal("Could not find the bootstrap file for WordPress");
     }
     $wpUserTimezone = get_option('timezone_string');
     if ($wpUserTimezone) {