CRM-13446 - Upgrade - Don't translate very technical messages
authorColeman Watts <coleman@civicrm.org>
Sun, 6 Oct 2013 12:36:43 +0000 (13:36 +0100)
committerColeman Watts <coleman@civicrm.org>
Sun, 6 Oct 2013 12:36:43 +0000 (13:36 +0100)
CRM/Upgrade/Incremental/php/FourThree.php

index 821260d0b08101fbd04a8432228c49d8217551b4..17f2ae67f0f004a06b192d252c707db04eb9266a 100644 (file)
@@ -87,10 +87,7 @@ WHERE {$key}.id IS NULL";
         }
         $dao = CRM_Core_DAO::executeQuery($query);
         if ($dao->N) {
-          $invalidDataMessage = '<strong>' .
-            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. <a href="%1" target="_blank">You can review steps to correct this situation on the documentation wiki.</a>',
-              array( 1 => 'http://wiki.civicrm.org/confluence/display/CRMDOC/Fixing+Orphaned+Contribution+Recur+Records')
-            ) . '</strong>';
+          $invalidDataMessage = '<strong>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. <a href="http://wiki.civicrm.org/confluence/display/CRMDOC/Fixing+Orphaned+Contribution+Recur+Records" target="_blank">You can review steps to correct this situation on the documentation wiki.</a></strong>';
           CRM_Core_Error::fatal($invalidDataMessage);
           return FALSE;
         }