Autor : Mindful Person
Sursa : phpbbcodes.ro
Deschideti posting.php
Cautati :
Code:
$user->setup(array('posting', 'mcp', 'viewtopic'), $post_data['forum_style']);
Adaugati dupa :
Code:
// keep members from bumping topics if they made the last post. mods/admins not affected.
if (($mode == 'quote' || $mode == 'reply' || $mode == 'bump') && !$auth->acl_get('m_') && intval($post_data['topic_last_poster_id']) == intval($user->data['user_id'])) {
meta_refresh(3, append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'p=' . $post_data['topic_last_post_id'] . '#p' . $post_data['topic_last_post_id']));
trigger_error('Tu ai scris ultimul mesaj in acest subiect.
Te rugam modifica ultimul mesaj daca doresti sa mai adaugi ceva in plus.');
}
// END