CRM-15898 - Use simpler version of title as global
authorColeman Watts <coleman@civicrm.org>
Sat, 31 Jan 2015 03:06:45 +0000 (22:06 -0500)
committerColeman Watts <coleman@civicrm.org>
Sat, 31 Jan 2015 03:06:45 +0000 (22:06 -0500)
----------------------------------------
* CRM-15898: Set <title> in wordpress header
  https://issues.civicrm.org/jira/browse/CRM-15898

CRM/Utils/System/WordPress.php

index 0b3c3eefd22061e368e0a2edb5d0f0c0d3940896..cc9865e2bba3ad33b64aff015e885ec5bd91b2ea 100644 (file)
@@ -69,8 +69,9 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
     // do we have functionality provided by plugin version 4.6+ present?
     if (method_exists($civi, 'civicrm_context_get')) {
 
+      // FIXME: Why is this global?
       global $civicrm_wp_title;
-      $civicrm_wp_title = $pageTitle;
+      $civicrm_wp_title = $title;
 
       // yes, set page title, depending on context
       $context = civi_wp()->civicrm_context_get();
@@ -86,7 +87,7 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
 
       // legacy pre-4.6 behaviour
       global $civicrm_wp_title;
-      $civicrm_wp_title = $pageTitle;
+      $civicrm_wp_title = $title;
       $template = CRM_Core_Smarty::singleton();
       $template->assign('pageTitle', $pageTitle);