aboutsummaryrefslogtreecommitdiff
path: root/lib/minz/ActionController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/minz/ActionController.php')
-rwxr-xr-xlib/minz/ActionController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/minz/ActionController.php b/lib/minz/ActionController.php
index ab9389dbd..409d9611f 100755
--- a/lib/minz/ActionController.php
+++ b/lib/minz/ActionController.php
@@ -7,7 +7,7 @@
/**
* La classe ActionController représente le contrôleur de l'application
*/
-class ActionController {
+class Minz_ActionController {
protected $router;
protected $view;
@@ -18,7 +18,7 @@ class ActionController {
*/
public function __construct ($router) {
$this->router = $router;
- $this->view = new View ();
+ $this->view = new Minz_View ();
$this->view->attributeParams ();
}