From ff73097c3f84902a7916b4d5ad22d6db18fe420d Mon Sep 17 00:00:00 2001 From: Lars SG Date: Fri, 16 Apr 2021 15:54:21 -0600 Subject: [PATCH] Changed " - Copy" append to "Copy of " prepend for consistency --- CRM/Mailing/Controller/Send.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Mailing/Controller/Send.php b/CRM/Mailing/Controller/Send.php index cfde095d34..e1d9ce8ce3 100644 --- a/CRM/Mailing/Controller/Send.php +++ b/CRM/Mailing/Controller/Send.php @@ -51,7 +51,7 @@ class CRM_Mailing_Controller_Send extends CRM_Core_Controller { $clone = civicrm_api3('Mailing', 'clone', ['id' => $mid]); civicrm_api3('Mailing', 'create', [ 'id' => $clone['id'], - 'name' => $clone['values'][$clone['id']]['name'] . " - Copy", + 'name' => "Copy of " . $clone['values'][$clone['id']]['name'], ]); CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/a/', NULL, TRUE, '/mailing/' . $clone['id'])); } -- 2.25.1