diff --git a/src/Form/PlanProjectForm.php b/src/Form/PlanProjectForm.php
index 9f4bbf800785cbf396e80a20a39b0b9af7033324..6cd24878bf118e107fce1c0e02c6eef533e48ff1 100644
--- a/src/Form/PlanProjectForm.php
+++ b/src/Form/PlanProjectForm.php
@@ -118,7 +118,10 @@ class PlanProjectForm extends PlanEventForm {
     $args = [];
     $query = $this->getRequest()->query;
     if ($query->has('destination')) {
-      $args = ['destination' => $query->get('destination')];
+      $args = [
+          'destination' => $query->get('destination'),
+          'start' => $query->get('start'),
+      ];
       $query->remove('destination');
     }