1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-17 07:10:48 +03:00
This commit is contained in:
Alexey Kachayev 2010-02-06 17:47:12 +00:00
parent e96578938d
commit 39c2efaaeb
6 changed files with 6 additions and 6 deletions

View file

@ -510,7 +510,7 @@ class ActionBlog extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_blog_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_blog_fields', array('bOk'=>&$bOk));
return $bOk;
}

View file

@ -491,7 +491,7 @@ class ActionLink extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_link_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_link_fields', array('bOk'=>&$bOk));
return $bOk;
}

View file

@ -291,7 +291,7 @@ class ActionPage extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_page_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_page_fields', array('bOk'=>&$bOk));
return $bOk;
}

View file

@ -501,7 +501,7 @@ class ActionQuestion extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_question_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_question_fields', array('bOk'=>&$bOk));
return $bOk;
}

View file

@ -410,7 +410,7 @@ class ActionTalk extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_talk_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_talk_fields', array('bOk'=>&$bOk));
return $bOk;
}

View file

@ -542,7 +542,7 @@ class ActionTopic extends Action {
/**
* Выполнение хуков
*/
$this->Hook_Run('ckeck_topic_fields', array('bOk'=>$bOk));
$this->Hook_Run('check_topic_fields', array('bOk'=>&$bOk));
return $bOk;
}