Um die Möglichkeit zu verhindern, dass der User trotzdem auf sein eigenes Posting nochmal schreiben kann zu umgehen, muss noch beim Quickreply Mod eine Abfrage eingebaut werden.
in der viewtopic.php
--------------------------
search
--------------------------
Code: Alles auswählen
if ($board_config['allow_quickreply'] && $userdata['user_quickreply'] && $is_auth['auth_reply'] && ($forum_topic_data['forum_status'] != FORUM_LOCKED) && ($forum_topic_data['topic_status'] != TOPIC_LOCKED) )
{
$show_qr_form = true;
}
else
{
$show_qr_form = false;
}inline search
--------------------------
Code: Alles auswählen
&& ($forum_topic_data['topic_status'] != TOPIC_LOCKED)
inline after ad
--------------------------
Code: Alles auswählen
&& ($stop_bumping != TRUE)
grüße f_X