aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-18 00:14:36 -0800
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-18 00:14:36 -0800
commit1b983e741440f7e72df41e3a6c0806fb2570f330 (patch)
tree8a4bd63fa8c56fd7f5fc1d73ab10d931b9fe156a /app/controllers/configureController.php
parenta77441a7097df3f457fc999ba747f3a0f9b9f494 (diff)
parentceeef41a96c3c21170501d582125dfc6602b4a69 (diff)
Merge pull request #280 from aledeg/issue178
Support de la modification des informations d'un flux.
Diffstat (limited to 'app/controllers/configureController.php')
-rwxr-xr-xapp/controllers/configureController.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php
index 51b0ebaca..c0a630257 100755
--- a/app/controllers/configureController.php
+++ b/app/controllers/configureController.php
@@ -94,6 +94,9 @@ class configureController extends ActionController {
} else {
if (Request::isPost () && $this->view->flux) {
$name = Request::param ('name', '');
+ $description = Request::param('description', '');
+ $website = Request::param('website', '');
+ $url = Request::param('url', '');
$hist = Request::param ('keep_history', 'no');
$cat = Request::param ('category', 0);
$path = Request::param ('path_entries', '');
@@ -113,6 +116,9 @@ class configureController extends ActionController {
$values = array (
'name' => $name,
+ 'description' => $description,
+ 'website' => $website,
+ 'url' => $url,
'category' => $cat,
'pathEntries' => $path,
'priority' => $priority,