Sujet : Hoa_Controller_Exception_ControllerIsNotFound marche plus?
Hey,
j'ai l'impression que depuis la mise à jour du zFormat, ce code
try {
$controller->dispatch();
}
catch ( Hoa_Controller_Exception_ControllerIsNotFound $e ) {
$parametre = array(
'data.array.personal' => array(
'module' => 'Erreurs',
'action' => 'Notfound'
)
);
$controller->addRequest(0, $parametre);
$controller->dispatch();
}Je n'ai plus la gestion des erreurs correctes... ça me donne ça:
Warning: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object in /home/joris/Developpement/Hoa_Framework/Framework/Core/Parameter.php on line 763
Uncaught exception: Hoa_Framework_Parameter::_zFormat: (0) Parameter controller.file is not found in parameters. in /home/joris/Developpement/Hoa_Framework/Framework/Core/Parameter.php at 764.
Est-ce que j'ai modifié mes configs et ça ne fonctionne plus ou est-ce réellement un bug?
Merci d'avance pour les réponses!