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
1 merge request!939#Fixed: 1. Events and tasks scheduled for Saturdays are not being shown in the agenda list within the Calendar module. Reports save is failing if we select Assign to .
...@@ -37,7 +37,7 @@ class Calendar_FetchAgendaEvents_Action extends Vtiger_BasicAjax_Action { ...@@ -37,7 +37,7 @@ class Calendar_FetchAgendaEvents_Action extends Vtiger_BasicAjax_Action {
if ($hideCompleted) { if ($hideCompleted) {
$query.= "vtiger_activity.eventstatus != 'HELD' AND "; $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); $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