From dd628faaded8e6feb990c2eb76cc15460e7a631f Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Sat, 16 Mar 2013 16:08:19 +0100 Subject: Amélioration design formulaires (boutons collés) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/feedController.php | 4 +++- app/layout/aside_feed.phtml | 14 ++++++++------ app/layout/header.phtml | 7 +++++-- 3 files changed, 16 insertions(+), 9 deletions(-) (limited to 'app') diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php index 585405ee7..48fcdf8cb 100755 --- a/app/controllers/feedController.php +++ b/app/controllers/feedController.php @@ -10,6 +10,7 @@ class feedController extends ActionController { } else { if (Request::isPost ()) { $url = Request::param ('url_rss'); + $params = array (); try { $feed = new Feed ($url); @@ -51,6 +52,7 @@ class feedController extends ActionController { 'content' => 'Le flux ' . $feed->url () . ' a bien été ajouté' ); Session::_param ('notification', $notif); + $params['id'] = $feed->id (); } catch (FileNotExistException $e) { Log::record ($e->getMessage (), Log::ERROR); // notif @@ -68,7 +70,7 @@ class feedController extends ActionController { Session::_param ('notification', $notif); } - Request::forward (array (), true); + Request::forward (array ('c' => 'configure', 'a' => 'feed', 'params' => $params), true); } } } diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index 7e37b2ac4..df6a1462b 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -1,6 +1,13 @@ diff --git a/app/layout/header.phtml b/app/layout/header.phtml index bf6429780..36c53654c 100644 --- a/app/layout/header.phtml +++ b/app/layout/header.phtml @@ -15,8 +15,11 @@ -- cgit v1.2.3