1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-16 14:50:48 +03:00

fix topic delete

This commit is contained in:
Mzhelskiy Maxim 2010-07-07 14:39:36 +00:00
parent 07297f72dd
commit d00cefeb56

View file

@ -211,7 +211,11 @@ class ModuleTopic extends Module {
/**
* Удаляем голосование к топику
*/
$this->Vote_DeleteVoteByTarget($iTopicId,'topic');
$this->Vote_DeleteVoteByTarget($iTopicId,'topic');
/**
* Удаляем теги
*/
$this->DeleteTopicTagsByTopicId($iTopicId);
return true;
}