From 050743aadb86a7f7921a29bc6670f1a919a9afb5 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sun, 6 Oct 2013 13:36:43 +0100 Subject: [PATCH] CRM-13446 - Upgrade - Don't translate very technical messages --- CRM/Upgrade/Incremental/php/FourThree.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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; } -- 2.25.1