X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FAddress%2FBatchUpdate.php;h=4e3f24f7bb8ea23c412fffb6e9481683b41bc1dc;hb=9f7b401dfb7fa7cd52ecd4d8bcab3d7b1422ebd2;hp=5a890d4b5110162a4524a3039e27be893350ea77;hpb=4de9f9328a1b4a7daf9802bdb6a6d9989b554fe8;p=civicrm-core.git diff --git a/CRM/Utils/Address/BatchUpdate.php b/CRM/Utils/Address/BatchUpdate.php index 5a890d4b51..4e3f24f7bb 100644 --- a/CRM/Utils/Address/BatchUpdate.php +++ b/CRM/Utils/Address/BatchUpdate.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * A PHP cron script to format all the addresses in the database. Currently @@ -256,16 +256,16 @@ class CRM_Utils_Address_BatchUpdate { } $this->returnMessages[] = ts("Addresses Evaluated: %1", array( - 1 => $totalAddresses + 1 => $totalAddresses, )) . "\n"; if ($processGeocode) { $this->returnMessages[] = ts("Addresses Geocoded: %1", array( - 1 => $totalGeocoded + 1 => $totalGeocoded, )) . "\n"; } if ($parseStreetAddress) { $this->returnMessages[] = ts("Street Addresses Parsed: %1", array( - 1 => $totalAddressParsed + 1 => $totalAddressParsed, )) . "\n"; if ($unparseableContactAddress) { $this->returnMessages[] = "
\n" . ts("Following is the list of contacts whose address is not parsed:") . "
\n"; @@ -287,4 +287,5 @@ class CRM_Utils_Address_BatchUpdate { $result['messages'] = implode("", $this->returnMessages); return $result; } + }