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/configureController.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/configureController.php')
| -rwxr-xr-x | app/controllers/configureController.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php index b0fd4a8f9..243c155f9 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -61,6 +61,9 @@ class configureController extends ActionController { } public function feedAction () { + $catDAO = new CategoryDAO (); + $this->view->categories = $catDAO->listCategories (); + $feedDAO = new FeedDAO (); $this->view->feeds = $feedDAO->listFeeds (); |
