diff options
| author | 2013-06-14 20:09:47 +0200 | |
|---|---|---|
| committer | 2013-06-14 20:09:47 +0200 | |
| commit | 746ae4b33a2e7a83d2623291c02d7b4292247103 (patch) | |
| tree | 1317ae7d91a82e573f41a9cfa8954ff6fe0dc708 /app/controllers/configureController.php | |
| parent | 9e219cbf5014c8f4f52f3ca6722f7a20cdcc13dd (diff) | |
Fix issue #79 : possibilité de changer le nom d'un flux
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 3b332de75..0d385daf9 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -91,6 +91,7 @@ class configureController extends ActionController { $this->view->categories = $catDAO->listCategories (); if (Request::isPost () && $this->view->flux) { + $name = Request::param ('name', ''); $cat = Request::param ('category', 0); $path = Request::param ('path_entries', ''); $priority = Request::param ('priority', 0); @@ -103,6 +104,7 @@ class configureController extends ActionController { } $values = array ( + 'name' => $name, 'category' => $cat, 'pathEntries' => $path, 'priority' => $priority, |
