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

pull/136/head
Marien Fressinaud 12 years ago
parent 30f559f90d
commit bf45520724
  1. 3
      app/controllers/configureController.php

@ -196,6 +196,9 @@ class configureController extends ActionController {
} }
public function importExportAction () { public function importExportAction () {
$catDAO = new CategoryDAO ();
$this->view->categories = $catDAO->listCategories ();
$this->view->req = Request::param ('q'); $this->view->req = Request::param ('q');
if ($this->view->req == 'export') { if ($this->view->req == 'export') {

Loading…
Cancel
Save