Skip to content
Snippets Groups Projects
Commit e76244c7 authored by Apparao G's avatar Apparao G
Browse files

#CalendarAgenda: Saturday events are not showing up in agenda view

parent 46638a56
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ class Calendar_FetchAgendaEvents_Action extends Vtiger_BasicAjax_Action {
if ($hideCompleted) {
$query.= "vtiger_activity.eventstatus != 'HELD' AND ";
}
$query.= " (concat(date_start,'',time_start)) >= ? AND (concat(date_start,'',time_start)) < ?";
$query.= " (concat(date_start,' ',time_start)) >= ? AND (concat(date_start,' ',time_start)) < ?";
$params = array($dbStartDateTime, $dbEndDateTime);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment