Fix tiny error in case search
authorSaurabh Batra <saurabh.batra96@gmail.com>
Fri, 4 Mar 2016 08:23:44 +0000 (13:53 +0530)
committerSaurabh Batra <saurabh.batra96@gmail.com>
Fri, 4 Mar 2016 08:23:44 +0000 (13:53 +0530)
CRM/Case/BAO/Query.php

index 76bad1fc969f7780095fba4c2812d2a2839a14b7..6f72cfefd666dd2b26b05942022be2a6d13170fa 100644 (file)
@@ -764,10 +764,10 @@ case_relation_type.id = case_relationship.relationship_type_id )";
       $errors['case_from_date_range_error'] = ts('Please check that your Case Start Date Range is in correct chronological order.');
     }
 
-    $lowDate = strtotime($fields['case_to_end_date_low']);
-    $highDate = strtotime($fields['case_to_end_date_high']);
+    $lowDate1 = strtotime($fields['case_to_end_date_low']);
+    $highDate1 = strtotime($fields['case_to_end_date_high']);
 
-    if ($lowDate > $highDate) {
+    if ($lowDate1 > $highDate1) {
       $errors['case_to_date_range_error'] = ts('Please check that your Case End Date Range is in correct chronological order.');
     }
     return empty($errors) ? TRUE : $errors;