Fix: missing parameters

This commit is contained in:
Regis Houssin 2011-05-30 06:30:59 +00:00
parent e4e098b26e
commit 9376865994

View File

@ -106,7 +106,7 @@ class Canvas
// Instantiate actions class (controller)
$controlclassname = 'Actions'.ucfirst($this->card).ucfirst($this->canvas);
$this->control = new $controlclassname($this->db);
$this->control = new $controlclassname($this->db,$this->targetmodule,$this->canvas,$this->card);
}
// TODO Dao should be declared and used by controller or templates when required only