From b5916b6c04cd7428cd188ed56545dbf985b6c18c Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Thu, 25 Oct 2012 22:24:54 +0200 Subject: mise en place du routage --- app/controllers/configureController.php | 2 +- app/controllers/feedController.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app/controllers') diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 68fa0404a..a380e87c4 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -46,7 +46,7 @@ class configureController extends ActionController { $this->view->categories = $catDAO->listCategories (); } - public function fluxAction () { + public function feedAction () { $feedDAO = new FeedDAO (); $this->view->feeds = $feedDAO->listFeeds (); diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php index 0c0528202..1450ce69e 100755 --- a/app/controllers/feedController.php +++ b/app/controllers/feedController.php @@ -156,7 +156,7 @@ class feedController extends ActionController { $feedDAO = new FeedDAO (); $feedDAO->deleteFeed ($id); - Request::forward (array ('c' => 'configure', 'a' => 'flux')); + Request::forward (array ('c' => 'configure', 'a' => 'feed'), true); } } } -- cgit v1.2.3