aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/feedController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/feedController.php')
-rwxr-xr-xapp/controllers/feedController.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php
index 622adb96f..e16161842 100755
--- a/app/controllers/feedController.php
+++ b/app/controllers/feedController.php
@@ -15,10 +15,12 @@ class feedController extends ActionController {
} else {
if (Request::isPost ()) {
$url = Request::param ('url_rss');
+ $cat = Request::param ('category');
$params = array ();
try {
$feed = new Feed ($url);
+ $feed->_category ($cat);
$feed->load ();
$feedDAO = new FeedDAO ();