X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/d691d45a7be11dab015669978c4dbbe55f5fe040..0f0d50eb8832ffe2e1c3d8f40f64d384e6b94b5d:/Controller/ApplicationController.php?ds=inline

diff --git a/Controller/ApplicationController.php b/Controller/ApplicationController.php
index 920b592..5a787dc 100644
--- a/Controller/ApplicationController.php
+++ b/Controller/ApplicationController.php
@@ -165,22 +165,22 @@ class ApplicationController extends AbstractController {
 				//Check if afternoon
 				} elseif ($slot == 'Afternoon') {
 					//Set begin at 18h
-					$session->setBegin(new \DateTime('14:00:00'));
+					$session->setBegin(new \DateTime('15:30:00'));
 
 					//Set length at 5h
-					$session->setLength(new \DateTime('05:00:00'));
+					$session->setLength(new \DateTime('05:30:00'));
 				//Check if evening
 				} elseif ($slot == 'Evening') {
 					//Set begin at 19h00
-					$session->setBegin(new \DateTime('19:00:00'));
+					$session->setBegin(new \DateTime('19:30:00'));
 
 					//Set length at 5h
-					$session->setLength(new \DateTime('06:00:00'));
+					$session->setLength(new \DateTime('05:30:00'));
 
 					//Check if next day is premium
 					if ($premium) {
 						//Set length at 7h
-						$session->setLength(new \DateTime('07:00:00'));
+						$session->setLength(new \DateTime('06:30:00'));
 					}
 				//Check if after
 				} else {