Dear,
when we make a search on dateTime field with 'between'
start : 01/02/2019
end : 28/02.2019
result go from 01/02/2019 to 27/02.2019
then he do :
>= start AND < end
it's normal behaviour or ..
do you think is good behaviour ?
>= start AND <= end. is not better ?
Regards
EspoCRM : 5.6.0
php : 7.1.2
On SelectManagers/Base line 1071
when we make a search on dateTime field with 'between'
start : 01/02/2019
end : 28/02.2019
result go from 01/02/2019 to 27/02.2019
then he do :
>= start AND < end
it's normal behaviour or ..
do you think is good behaviour ?
>= start AND <= end. is not better ?
Regards
EspoCRM : 5.6.0
php : 7.1.2
On SelectManagers/Base line 1071
PHP Code:
$dt->modify('-1 second'); => $dt->modify('+1 day -1 second');
Comment