Darathor
Citation :
But : Autorise les membres à éditer leurs messages même lorsque le sujet est verrouillé (mais pas lorsque c'est la section entière qui est verrouillée).
Auteur : Darathor (darathor@free.fr)
Version : 1.0 (02/07/2005)
Compatibilité phpBB : 2.0.16
Dans "posting.php" :
Code :
#
# Trouver
#
else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
#
# Remplacer par
#
// DEBUT MOD Edit locked posts
// -- DEBUT Enlevé
// else if ( $mode != 'newtopic' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
// -- FIN Enlevé
else if ( $mode != 'newtopic' && $mode != 'editpost' && $post_info['topic_status'] == TOPIC_LOCKED && !$is_auth['auth_mod'])
// FIN MOD Edit locked posts