From fe17e8d1efb1186dfd12bd74b7a337f8e745954d Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Sun, 14 Sep 2014 23:37:08 -0400 Subject: [PATCH] CRM_Utils_System_WordPress - Fix is_wordpress The property is defined in the base-class but never set. --- CRM/Utils/System/WordPress.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Utils/System/WordPress.php b/CRM/Utils/System/WordPress.php index 091e4bb8c3..a69eff6b7f 100644 --- a/CRM/Utils/System/WordPress.php +++ b/CRM/Utils/System/WordPress.php @@ -48,6 +48,7 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base { * @var bool */ $this->is_drupal = FALSE; + $this->is_wordpress = TRUE; } /** -- 2.25.1