Ejemplo n.º 1
0
function fermion($user_id, $topic_id = 0)
{
    bb_log_deprecated('function', __FUNCTION__, 'bb_fermion');
    return bb_fermion($user_id, $topic_id);
}
Ejemplo n.º 2
0
function bb_bozo_delete_post($post_id, $new_status, $old_status)
{
    $bb_post = bb_get_post($post_id);
    if (1 < $new_status && 2 > $old_status) {
        bb_bozon($bb_post->poster_id, $bb_post->topic_id);
    } elseif (2 > $new_status && 1 < $old_status) {
        bb_fermion($bb_post->poster_id, $bb_post->topic_id);
    }
}