From 033cfa134ccf3ffeae3a6d313b2e4234ac1c7f81 Mon Sep 17 00:00:00 2001 From: hugo_082 Date: Mon, 3 Jul 2017 16:44:45 +0200 Subject: [PATCH] Minor bug link --- Core/Execution.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Execution.php b/Core/Execution.php index 6ba7007..585d72f 100644 --- a/Core/Execution.php +++ b/Core/Execution.php @@ -100,7 +100,7 @@ public function computeData() { public function computeDataOfView(View $view) { if ($view->getData() != null) { $this->flash = array_merge($this->flash, $view->getData()->getFlash()); - $red = $view->getData()->getRedirection($this->entityInfo->name); + $red = $view->getData()->getRedirection($this->entityInfo->getId()); if ($red != null) $this->redirection = $red; }