Merge pull request #18907 from alifrumin/2139
[civicrm-core.git] / CRM / Contact / Form / Task / Unhold.php
index 0f51395bc2b1d735eb8c5ec8114930eaece24810..add289176475127bd7c3b18b38ca6cef7b060ac4 100644 (file)
@@ -28,14 +28,14 @@ WHERE on_hold = 1 AND hold_date is not null AND contact_id in (" . implode(",",
 
       if ($rowCount) {
         CRM_Core_Session::setStatus(ts('%count email was found on hold and updated.', [
-              'count' => $rowCount,
-              'plural' => '%count emails were found on hold and updated.',
-            ]), ts('Emails Restored'), 'success');
+          'count' => $rowCount,
+          'plural' => '%count emails were found on hold and updated.',
+        ]), ts('Emails Restored'), 'success');
       }
       else {
         CRM_Core_Session::setStatus(ts('The selected contact does not have an email on hold.', [
-              'plural' => 'None of the selected contacts have an email on hold.',
-            ]), ts('No Emails to Restore'), 'info');
+          'plural' => 'None of the selected contacts have an email on hold.',
+        ]), ts('No Emails to Restore'), 'info');
       }
     }
     else {