Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1247 from hamrant/YGBW-320
Browse files Browse the repository at this point in the history
[YGBW-320]  Fix duplicate sessions on PEF Schedules page
  • Loading branch information
podarok committed Aug 28, 2018
2 parents 2c233f0 + db0ea60 commit d3896c6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public function ajaxScheduler( Request $request, $location, $date, $category) {
$weekday = date('N', $date);

$timestamp_start = $date;
$timestamp_end = $date + 24 * 60 * 60 * 60; // Next day.
// Next day.
$timestamp_end = $date + 24 * 60 * 60;

$sql = "SELECT DISTINCT
n.nid,
Expand Down

0 comments on commit d3896c6

Please sign in to comment.