Aşağıda anlattığım uygulamayla Üyelerin mesajını ,mesaj yazdığı kutunun üstündeki sil butonuyla sildiğinizde mesaj sayısı düşmeyecek,ancak hızlı yönetim seçeneğiyle veya konuyu komple sildiğinizde düşecektir
Sources/RemoveTopic.php de bul:
// 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:
// 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']);
}
Not:Alıntıdır.