summaryrefslogtreecommitdiff
path: root/app/controllers/configureController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/configureController.php')
-rwxr-xr-xapp/controllers/configureController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php
index 243c155f9..01ed4d414 100755
--- a/app/controllers/configureController.php
+++ b/app/controllers/configureController.php
@@ -88,10 +88,12 @@ class configureController extends ActionController {
if (Request::isPost () && $this->view->flux) {
$cat = Request::param ('category', 0);
$path = Request::param ('path_entries', '');
+ $priority = Request::param ('priority', 0);
$values = array (
'category' => $cat,
- 'pathEntries' => $path
+ 'pathEntries' => $path,
+ 'priority' => $priority
);
if ($feedDAO->updateFeed ($id, $values)) {