diff options
| author | 2013-03-19 21:35:02 +0100 | |
|---|---|---|
| committer | 2013-03-19 21:35:02 +0100 | |
| commit | 82386d8630bf5e23cffad3cf3643fcd00835ef50 (patch) | |
| tree | 1f6e620631bc44f195ef5f262ce5de1b01969118 /app/controllers/feedController.php | |
| parent | c47b3dc50a60622521b9050d7ee54e2f7c758ac8 (diff) | |
Fix bug #33 : possibilité d'assigner directement la catégorie à un flux lors de son ajout + correction design
Diffstat (limited to 'app/controllers/feedController.php')
| -rwxr-xr-x | app/controllers/feedController.php | 2 |
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 (); |
