Skip to content

Commit

Permalink
Removing traditional deprecated path notation (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Goazil authored Oct 3, 2020
1 parent f0c9062 commit 23dfc65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Controller/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function addAction(Request $request)
return $this->redirect($this->generateUrl('BCCCronManagerBundle_index'));
}

return $this->render('@BCCCronManager:Default:index.html.twig', array(
return $this->render('@BCCCronManager/Default/index.html.twig', array(
'crons' => $cm->get(),
'raw' => $cm->getRaw(),
'form' => $form->createView(),
Expand Down Expand Up @@ -87,7 +87,7 @@ public function editAction($id, Request $request)
return $this->redirect($this->generateUrl('BCCCronManagerBundle_index'));
}

return $this->render('@BCCCronManager:Default:edit.html.twig', array(
return $this->render('@BCCCronManager/Default/edit.html.twig', array(
'form' => $form->createView(),
));
}
Expand Down

0 comments on commit 23dfc65

Please sign in to comment.