diff options
| author | 2013-09-14 17:48:33 +0200 | |
|---|---|---|
| committer | 2013-09-14 17:48:33 +0200 | |
| commit | adc33811c3c9513ca56dfa5e57169a5a1df106db (patch) | |
| tree | fc76930a2221a807cd8373f8f02ebab639d19f83 /app/controllers/configureController.php | |
| parent | 31a6a13268023a2db5eba2445ee6c7db4a6d9623 (diff) | |
Fix issue #158 : ajout premier flux fonctionne
La catégorie par défaut est bien mise par défaut pour le premier flux
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 6396dbfeb..a31f5582e 100755 --- a/app/controllers/configureController.php +++ b/app/controllers/configureController.php @@ -8,6 +8,9 @@ class configureController extends ActionController { array ('error' => array (Translate::t ('access_denied'))) ); } + + $catDAO = new CategoryDAO (); + $catDAO->checkDefault (); } public function categorizeAction () { |
