INFRA-132 - CRM/Friend - phpcbf
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 21:09:21 +0000 (13:09 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:43 +0000 (15:07 -0800)
CRM/Friend/BAO/Friend.php
CRM/Friend/Form.php

index 8d679c51bcecf1db2325f9ec7e3be20c7a51a11d..95f5c5586164397ef8db57fc4905083a53040e11 100644 (file)
@@ -120,7 +120,6 @@ class CRM_Friend_BAO_Friend extends CRM_Friend_DAO_Friend {
     $frndParams['entity_table'] = $params['entity_table'];
     self::getValues($frndParams);
 
-
     $activityTypeId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', 'Tell a Friend', 'value', 'name');
 
     //create activity
index bab5258040fe7d82b0ab3ce0024b791abe757a72..2d3ecec1bcb9a85f5247d85646f20a197cd1dec4 100644 (file)
@@ -303,18 +303,18 @@ class CRM_Friend_Form extends CRM_Core_Form {
         $this->assign('linkTextUrl', $linkTextUrl);
         $this->assign('linkText', $linkText);
       }
-        } else if ( $this->_entityTable == 'civicrm_event' ) {
-            // If this is tell a friend after registering for an event, give donor link to create their own fundraising page
-            require_once 'CRM/PCP/BAO/PCP.php';
-            if ( $linkText = CRM_PCP_BAO_PCP::getPcpBlockStatus( $defaults['entity_id'], $defaults['entity_table'] ) ) {
-                $linkTextUrl = CRM_Utils_System::url( 'civicrm/contribute/campaign',
+    } else if ( $this->_entityTable == 'civicrm_event' ) {
+      // If this is tell a friend after registering for an event, give donor link to create their own fundraising page
+      require_once 'CRM/PCP/BAO/PCP.php';
+      if ( $linkText = CRM_PCP_BAO_PCP::getPcpBlockStatus( $defaults['entity_id'], $defaults['entity_table'] ) ) {
+        $linkTextUrl = CRM_Utils_System::url( 'civicrm/contribute/campaign',
                                                       "action=add&reset=1&pageId={$defaults['entity_id']}&component=event",
-                                                      false, null, true,
-                                                      true );
-                $this->assign( 'linkTextUrl', $linkTextUrl );
-                $this->assign( 'linkText', $linkText );
+                                                      FALSE, NULL, TRUE,
+                                                      TRUE );
+        $this->assign( 'linkTextUrl', $linkTextUrl );
+        $this->assign( 'linkText', $linkText );
+      }
     }
-        }
 
     CRM_Utils_System::setTitle($defaults['thankyou_title']);
     $this->assign('thankYouText', $defaults['thankyou_text']);