From 9dcce34912bb5a3e8639a6a3e2803622f3220bc6 Mon Sep 17 00:00:00 2001 From: Pratik Joshi Date: Fri, 26 Apr 2013 21:12:55 +0530 Subject: [PATCH] fix for CRM-12404 : "Supporter profile is not set for this Personal Campaign Page or the profile is disabled. Please contact the site administrator if you need assistance." --- CRM/PCP/Form/PCPAccount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/PCP/Form/PCPAccount.php b/CRM/PCP/Form/PCPAccount.php index a8b107d1d5..95e1ff2b58 100644 --- a/CRM/PCP/Form/PCPAccount.php +++ b/CRM/PCP/Form/PCPAccount.php @@ -64,7 +64,7 @@ class CRM_PCP_Form_PCPAccount extends CRM_Core_Form { $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this); $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this); - if (!$this->_pageId && $config->userFrameworkFrontend) { + if (!$this->_pageId && $config->userFramework == 'Joomla' && $config->userFrameworkFrontend) { $this->_pageId = $this->_id; } -- 2.25.1