Üye mesajı silinince toplam sayısından düşmesin
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']);
}