Browse Source

Fix issue #81 : Possibilité d'ajouter un flux dans une catégorie sur la page d'import / export

Marien Fressinaud 13 years ago
parent
commit
bf45520724
1 changed files with 3 additions and 0 deletions
  1. 3 0
      app/controllers/configureController.php

+ 3 - 0
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') {