1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00

fix ядра

This commit is contained in:
Mzhelskiy Maxim 2012-06-21 14:39:54 +04:00
parent 9da9c4be51
commit 55dfa22bf5
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ class InitAction {
* Логика инициализации
*
*/
public function InitAction() {
public function Init() {
$this->Hook_Run('init_action');
}
}

View file

@ -238,7 +238,7 @@ class Router extends LsObject {
*/
require_once(Config::Get('path.root.server').'/classes/actions/InitAction.class.php');
$oActionInit=new InitAction($this->oEngine);
$oActionInit->InitAction();
$oActionInit->Init();
$sActionClass=$this->DefineActionClass();
/**