pinking shears - remove stray whitespace
authorChristian Wach <needle@haystack.co.uk>
Wed, 12 Nov 2014 16:03:51 +0000 (16:03 +0000)
committerChristian Wach <needle@haystack.co.uk>
Wed, 12 Nov 2014 16:03:51 +0000 (16:03 +0000)
CRM/Utils/System/WordPress.php

index 47a7bd6f9c5757767bc85cd3edd35d08157d716f..54d6d0b84efeca85756b4c673c99c6c6b0b45f52 100644 (file)
@@ -64,16 +64,16 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
     if (!$pageTitle) {
       $pageTitle = $title;
     }
-    
+
     // get civi-wordpress instance
     $civi = civi_wp();
-    
+
     // do we have functionality provided by plugin version 4.6+ present?
     if (method_exists($civi, 'civicrm_context_get')) {
-      
+
       global $civicrm_wp_title;
       $civicrm_wp_title = $pageTitle;
-      
+
       // yes, set page title, depending on context
       $context = civi_wp()->civicrm_context_get();
       switch ( $context ) {
@@ -82,15 +82,15 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
           $template = CRM_Core_Smarty::singleton();
           $template->assign('pageTitle', $pageTitle);
       }
-      
+
     } elseif (civicrm_wp_in_civicrm()) {
-      
+
       // legacy pre-4.6 behaviour
       global $civicrm_wp_title;
       $civicrm_wp_title = $pageTitle;
       $template = CRM_Core_Smarty::singleton();
       $template->assign('pageTitle', $pageTitle);
-      
+
     }
   }