minor fix
authormonishdeb <monish.deb@webaccessglobal.com>
Wed, 21 Oct 2015 07:57:45 +0000 (13:27 +0530)
committermonishdeb <monish.deb@webaccessglobal.com>
Wed, 21 Oct 2015 07:57:45 +0000 (13:27 +0530)
CRM/Contact/Form/Search/Advanced.php
CRM/Core/BAO/CustomValue.php

index 9b62331ffbfbec94079067da02ae35056b4e4ae1..502da90f056edfe526bcc1811c430a5c167f058c 100644 (file)
@@ -360,7 +360,7 @@ class CRM_Contact_Form_Search_Advanced extends CRM_Contact_Form_Search {
           }
           $this->_formValues[$element] = array('IN' => $value);
         }
-        elseif ((substr($value, 0, 1) == '%') || (substr($value, -1, 1) == '%')) {
+        elseif (strstr($value, '%')) {
           $this->_formValues[$element] = array('LIKE' => $value);
         }
       }
index 557e4ab3a0a63c964f276c0cfb2f88c5956633d5..482a1735813a447e5e92f7c7e035ce9446238af4 100644 (file)
@@ -188,10 +188,7 @@ class CRM_Core_BAO_CustomValue extends CRM_Core_DAO {
       }
       elseif (($htmlType == 'TextArea' ||
           ($htmlType == 'Text' && $dataType == 'String')
-        ) &&
-        ((substr($formValues[$key], 0, 1) == '%') ||
-          (substr($formValues[$key], -1, 1) == '%')
-        )
+        ) && strstr($formValues[$key], '%')
       ) {
         $formValues[$key] = array('LIKE' => $formValues[$key]);
       }