CRM-12197 change IDS upgrade msg
authorColeman Watts <coleman@civicrm.org>
Thu, 31 Oct 2013 00:28:26 +0000 (17:28 -0700)
committerColeman Watts <coleman@civicrm.org>
Thu, 31 Oct 2013 00:28:26 +0000 (17:28 -0700)
CRM/Upgrade/Incremental/php/FourFour.php

index a6e14bf63599962b087e2e3a74a7ef5844246b63..19f0ad3e488cde24468b2f6ae3efa563b20771a7 100644 (file)
@@ -59,10 +59,10 @@ class CRM_Upgrade_Incremental_php_FourFour {
    * @return void
    */
   function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
-    if ($rev == '4.4.alpha1') {
+    if ($rev == '4.4.1') {
       $config = CRM_Core_Config::singleton();
       if (!empty($config->useIDS)) {
-        $postUpgradeMessage .= '<br />' . ts("The setting to skip IDS check has been deprecated. Please use the permission 'skip IDS check' to bypass the IDS system.");
+        $postUpgradeMessage .= '<br />' . ts("The setting to skip IDS check has been removed. Your site has this configured in civicrm.settings.php but it will no longer work. Instead, use the new permission 'skip IDS check' to bypass the IDS system.");
       }
     }
   }