Skip to content
Snippets Groups Projects
Commit 27232585 authored by lcdweb's avatar lcdweb
Browse files

#341 sybunt custom search date field fix

parent 050aceb1
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