CRM-14222
authorCiviCRM <info@civicrm.org>
Thu, 5 Jun 2014 06:34:26 +0000 (12:04 +0530)
committerCiviCRM <info@civicrm.org>
Thu, 5 Jun 2014 06:34:26 +0000 (12:04 +0530)
CRM/PCP/BAO/PCP.php

index 6e51468f1a4a786ffba46380058ade9912b42632..7066aa9055809e762d61b25e5203331ebbf33148 100644 (file)
@@ -640,7 +640,8 @@ WHERE pcp.id = %1 AND cc.contribution_status_id =1 AND cc.is_test = 0";
    * @static
    */
   static function sendStatusUpdate($pcpId, $newStatus, $isInitial = FALSE, $component = 'contribute') {
-    $pcpStatus = CRM_Core_OptionGroup::values("pcp_status", FALSE, FALSE, FALSE, NULL, 'name');
+    $pcpStatusName = CRM_Core_OptionGroup::values("pcp_status", FALSE, FALSE, FALSE, NULL, 'name');
+    $pcpStatus = CRM_Core_OptionGroup::values("pcp_status");
     $config = CRM_Core_Config::singleton();
 
     if (!isset($pcpStatus[$newStatus])) {
@@ -682,7 +683,7 @@ WHERE pcp.id = %1 AND cc.contribution_status_id =1 AND cc.is_test = 0";
     CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $params, $pcpBlockInfo);
 
     // assign urls required in email template
-    if ($pcpStatus[$newStatus] == 'Approved') {
+    if ($pcpStatusName[$newStatus] == 'Approved') {
       $tplParams['isTellFriendEnabled'] = $pcpBlockInfo['is_tellfriend_enabled'];
       if ($pcpBlockInfo['is_tellfriend_enabled']) {
         $pcpTellFriendURL = CRM_Utils_System::url('civicrm/friend',