From: Eileen McNaughton Date: Mon, 31 Mar 2014 04:17:39 +0000 (+1300) Subject: fix error message to make more sense X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=017877e1128c1ebf64f878ff91667ac27a35a140;p=civicrm-core.git fix error message to make more sense --- diff --git a/api/v3/Job.php b/api/v3/Job.php index 1c07ac6515..0d5fb87006 100644 --- a/api/v3/Job.php +++ b/api/v3/Job.php @@ -434,7 +434,7 @@ function civicrm_api3_job_process_participant($params) { function civicrm_api3_job_process_membership($params) { $lock = new CRM_Core_Lock('civimail.job.updateMembership'); if (!$lock->isAcquired()) { - return civicrm_api3_create_error('Could not acquire lock, another EmailProcessor process is running'); + return civicrm_api3_create_error('Could not acquire lock, another Membership Processing process is running'); } $result = CRM_Member_BAO_Membership::updateAllMembershipStatus();