comment & whitepace
authoreileenmcnaugton <eileen@fuzion.co.nz>
Thu, 26 Nov 2015 07:44:10 +0000 (20:44 +1300)
committereileenmcnaugton <eileen@fuzion.co.nz>
Thu, 26 Nov 2015 20:42:06 +0000 (09:42 +1300)
CRM/Contribute/BAO/ContributionPage.php
tests/phpunit/CRM/Core/Payment/AuthorizeNetIPNTest.php
tests/phpunit/CiviTest/CiviMailUtils.php

index e3fbe0fa69c2200b730fbb2bfe86221112449b48..092c6a2ed722cccf89dff40a1ffba309b28991a2 100644 (file)
@@ -604,7 +604,12 @@ class CRM_Contribute_BAO_ContributionPage extends CRM_Contribute_DAO_Contributio
   }
 
   /**
-   * Add the custom fields for contribution page (ie profile)
+   * Add the custom fields for contribution page (ie profile).
+   *
+   * @deprecated assigning values to smarty like this is risky because
+   *  - it is hard to debug since $name is used in the assign
+   *  - it is potentially 'leaky' - it's better to do this on the form
+   *  or close to where it is used / required. See CRM-17519 for leakage e.g.
    *
    * @param int $gid
    *   Uf group id.
index ab1c8a628ff38a3934276995913c964b8e2f8e11..964270c9650d3b20da8d9def4e44172b230ce766 100644 (file)
@@ -181,14 +181,14 @@ class CRM_Core_Payment_AuthorizeNetIPNTest extends CiviUnitTestCase {
       'This membership will be automatically renewed every',
       'Dear Mrs. Antonia Anderson II',
       'Thanks for your auto renew membership sign-up',
-    ), array(
-        'First Name: Anthony',
-        'First Name: Antonia',
-        'Last Name: Anderson',
-        'Supporter Profile',
-        'Email Address: antonia_anderson@civicrm.org',
-      )
-    );
+    ),
+    array(
+      'First Name: Anthony',
+      'First Name: Antonia',
+      'Last Name: Anderson',
+      'Supporter Profile',
+      'Email Address: antonia_anderson@civicrm.org',
+    ));
 
     $mut->stop();
     $mut->clearMessages();
index 5ad7f70bfb14dc1d242409a2128d3f54bbf25aeb..ca3d7eb392ace7674676192cea11418a4a7bd09b 100644 (file)
@@ -348,7 +348,7 @@ class CiviMailUtils extends PHPUnit_Framework_TestCase {
       throw new Exception("Not implementated: clearMessages for WebTest");
     }
     else {
-      CRM_Core_DAO::executeQuery('DELETE FROM civicrm_mailing_spool ORDER BY id DESC LIMIT '. $limit);
+      CRM_Core_DAO::executeQuery('DELETE FROM civicrm_mailing_spool ORDER BY id DESC LIMIT ' . $limit);
     }
   }