CC-4279: Library: Searching by criteria "Uploaded from" does not work
-fixed
This commit is contained in:
parent
a7427645d5
commit
6067cc221f
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@ class Application_Model_Datatables
|
||||||
$isRange = false;
|
$isRange = false;
|
||||||
if (strstr($term, '~')) {
|
if (strstr($term, '~')) {
|
||||||
$info = explode('~', $term);
|
$info = explode('~', $term);
|
||||||
$input1 = isset($info[0])?$info[0]:null;
|
$input1 = isset($info[0])?Application_Common_DateHelper::ConvertToUtcDateTimeString($info[0]):null;
|
||||||
$input2 = isset($info[1])?$info[1]:null;
|
$input2 = isset($info[1])?Application_Common_DateHelper::ConvertToUtcDateTimeString($info[1]):null;
|
||||||
$isRange = true;
|
$isRange = true;
|
||||||
} else {
|
} else {
|
||||||
$input1 = $term;
|
$input1 = $term;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue