Skip to content
Snippets Groups Projects
Unverified Commit 59add836 authored by eileen's avatar eileen :8ball: Committed by GitHub
Browse files

Merge pull request #12686 from lcdservices/dev-core-341

#341 sybunt custom search date field fix
parents 050aceb1 27232585
Branches
Tags
No related merge requests found
......@@ -404,7 +404,7 @@ AND c.receive_date < {$this->start_date_1}
* @param array $formValues
*
*/
public static function formatSavedSearchFields(&$formValues) {
public static function formatSavedSearchFields($formValues) {
$dateFields = array(
'start_date_1',
'end_date_1',
......@@ -418,6 +418,8 @@ AND c.receive_date < {$this->start_date_1}
$formValues[$element] = date('Y-m-d', strtotime($value));
}
}
return $formValues;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment