diff options
Diffstat (limited to 'app/controllers/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index 2856bb89f..8877c04a4 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, |
