Remove unhelpful alert from contribution search
authoreileen <emcnaughton@wikimedia.org>
Sat, 9 Nov 2019 01:12:20 +0000 (14:12 +1300)
committereileen <emcnaughton@wikimedia.org>
Sat, 9 Nov 2019 01:12:40 +0000 (14:12 +1300)
CRM/Contribute/BAO/Query.php

index 226544fc227e2364918ea9e434cd711c450b1aaa..0d2462ae780767de4a14097aaf9655f393fdbb8a 100644 (file)
@@ -482,12 +482,6 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
         //all other elements are handle in this case
         $fldName = substr($name, 13);
         if (!isset($fields[$fldName])) {
-          // CRM-12597
-          CRM_Core_Session::setStatus(ts(
-              'We did not recognize the search field: %1. Please check and fix your contribution related smart groups.',
-              [1 => $fldName]
-            )
-          );
           return;
         }
         $whereTable = $fields[$fldName];
@@ -495,7 +489,7 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
           $value = trim($value);
         }
 
-        $dataType = "String";
+        $dataType = 'String';
         if (!empty($whereTable['type'])) {
           $dataType = CRM_Utils_Type::typeToString($whereTable['type']);
         }