(NFC) whitespace header fixes
authorSeamus Lee <seamuslee001@gmail.com>
Thu, 13 Dec 2018 09:31:26 +0000 (20:31 +1100)
committerSeamus Lee <seamuslee001@gmail.com>
Thu, 13 Dec 2018 09:31:26 +0000 (20:31 +1100)
CRM/Core/Form/EntityFormTrait.php
CRM/Core/Payment/eWAY.php
CRM/Financial/Form/SalesTaxTrait.php
tests/phpunit/CRM/Mailing/BAO/MailingJobTest.php
tests/phpunit/CiviTest/CiviTestSMSProvider.php
tools/bin/scripts/replace.sh

index 40914a25119c1b4c77ea74831de6b0ca4a2ce887..2f1bdefb0d873f6b6d145c7beb161ebb72aa4a3d 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
   +--------------------------------------------------------------------+
-  | CiviCRM version 5                                                |
+  | CiviCRM version 5                                                  |
   +--------------------------------------------------------------------+
   | Copyright CiviCRM LLC (c) 2004-2019                                |
   +--------------------------------------------------------------------+
index 98b3526f79bd9c8d966b8adbccd4072ac01dae96..97359f040cd5c514ba1313ef0982b0b484b54394 100644 (file)
@@ -26,7 +26,7 @@
 
 /*
  +--------------------------------------------------------------------+
- | eWAY Core Payment Module for CiviCRM version 5 & 1.9             |
+ | eWAY Core Payment Module for CiviCRM version 5 & 1.9               |
  +--------------------------------------------------------------------+
  | Licensed to CiviCRM under the Academic Free License version 3.0    |
  |                                                                    |
index 67774a496584991e24d2232fb12571cd0711f852..a3eeb282b2c93df27132ace40a22cc22a80e4f1a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
   +--------------------------------------------------------------------+
-  | CiviCRM version 5                                                |
+  | CiviCRM version 5                                                  |
   +--------------------------------------------------------------------+
   | Copyright CiviCRM LLC (c) 2004-2019                                |
   +--------------------------------------------------------------------+
index e56bbba2043982b3ce8a9c590579dff81f20fc2a..46a8874015e7fed901395e3a615c7007260a0252 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                |
+ | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2019                                |
  +--------------------------------------------------------------------+
index 814a7a476697bac90700ab28cff896e3df77b6c1..e2c19828992418298f3bac84bb43fa0aa1c1c13a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                |
+ | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2019                                |
  +--------------------------------------------------------------------+
index 12fad21244dddfe6881f5b82d71fcbcd03cee881..dbc22904f41517a89c700287a2f74cc034abe2e6 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 for i in `find . -name '*.js' -or -name '*.module' -or -name '*.php' -or -name '*.po*' -or -name '*.tpl'  -or -name '*.hlp' -or -name '*.txt' -or -name '*.install' -or -name '*.inc' -or -name '*.test'`; do
   echo $i;
-  perl -pi -e 's/CiviCRM version .\../CiviCRM version 5/' $i;
+  perl -pi -e 's/CiviCRM version .\../CiviCRM version 5  /' $i;
   perl -pi -e 's/Copyright CiviCRM LLC \(c\) 2004-20../Copyright CiviCRM LLC (c) 2004-2019/' $i;
   perl -pi -e 's/CiviCRM LLC \(c\) 2004-20../CiviCRM LLC (c) 2004-2019/' $i;
 done