Üye mesajı silinince toplam sayısından düşmesin

0 Üye ve 1 Ziyaretçi konuyu incelemekte.

Çevrimdışı D®agon

  • Ezberletmez Öğretir
  • *******
  • Join Date: Mar 2008
  • Yer: Ankara
  • 11656
  • +524/-0
  • Cinsiyet: Bay
    • Arif Hocam
Üye mesajı silinince toplam sayısından düşmesin


Sources/RemoveTopic.php de

bul


Kod: You are not allowed to view links. Register or Login
// If the full topic was removed go back to the board.
    $full_topic = removeMessage($_REQUEST['msg']);

    if (allowedTo('delete_any') && (!allowedTo('delete_own') || $poster != $ID_MEMBER))
        logAction('delete', array('topic' => $topic, 'subject' => $subject, 'member' => $starter));

    if ($full_topic)
        redirectexit('board=' . $board . '.0');
    else
        redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
}



Değiştir

Kod: You are not allowed to view links. Register or Login
// If the full topic was removed go back to the board.
    $full_topic = removeMessage($_REQUEST['msg'] , false );

    if (allowedTo('delete_any') && (!allowedTo('delete_own') || $poster != $ID_MEMBER))
        logAction('delete', array('topic' => $topic, 'subject' => $subject, 'member' => $starter));

    if ($full_topic)
        redirectexit('board=' . $board . '.0');
    else
        redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
}