コード例 #1
0
ファイル: forum_mod.php プロジェクト: armpit/e107
function forumDeletePost($postId)
{
    require_once e_PLUGIN . 'forum/forum_class.php';
    $f = new e107forum();
    $ret = $f->postDelete($postId);
    return LAN_CANCEL . ' and ' . $ret . ' ' . FORLAN_7 . '.';
}