From: Coleman Watts Date: Sun, 6 Oct 2013 12:36:43 +0000 (+0100) Subject: CRM-13446 - Upgrade - Don't translate very technical messages X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=050743aadb86a7f7921a29bc6670f1a919a9afb5;p=civicrm-core.git CRM-13446 - Upgrade - Don't translate very technical messages --- diff --git a/CRM/Upgrade/Incremental/php/FourThree.php b/CRM/Upgrade/Incremental/php/FourThree.php index 821260d0b0..17f2ae67f0 100644 --- a/CRM/Upgrade/Incremental/php/FourThree.php +++ b/CRM/Upgrade/Incremental/php/FourThree.php @@ -87,10 +87,7 @@ WHERE {$key}.id IS NULL"; } $dao = CRM_Core_DAO::executeQuery($query); if ($dao->N) { - $invalidDataMessage = '' . - ts('Oops, it looks like you have orphaned recurring contribution records in your database. Before this upgrade can complete they will need to be fixed or deleted. You can review steps to correct this situation on the documentation wiki.', - array( 1 => 'http://wiki.civicrm.org/confluence/display/CRMDOC/Fixing+Orphaned+Contribution+Recur+Records') - ) . ''; + $invalidDataMessage = 'Oops, it looks like you have orphaned recurring contribution records in your database. Before this upgrade can complete they will need to be fixed or deleted. You can review steps to correct this situation on the documentation wiki.'; CRM_Core_Error::fatal($invalidDataMessage); return FALSE; }