diff options
| author | 2013-05-12 17:40:09 +0200 | |
|---|---|---|
| committer | 2013-05-12 17:40:09 +0200 | |
| commit | bf4552072418268470f81ba3883009da675800e4 (patch) | |
| tree | 59edbd2a98c2acbbaf87f6b968af2919ecd51250 /app/controllers/configureController.php | |
| parent | 30f559f90db4205e1f17d8cfe9ee5e4837eb7d91 (diff) | |
Fix issue #81 : Possibilité d'ajouter un flux dans une catégorie sur la page d'import / export
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 8500a4a04..3b332de75 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -196,6 +196,9 @@ class configureController extends ActionController { } public function importExportAction () { + $catDAO = new CategoryDAO (); + $this->view->categories = $catDAO->listCategories (); + $this->view->req = Request::param ('q'); if ($this->view->req == 'export') { |
