leider nicht so ganz. Nun erscheint folgende Fehlerzeile:
Code
if ( $topic_del && isset($forum_infos['topic_created']) )
{
$edit_time_end = $forum_infos['topic_created']+$this->current_permissions['forum_auth_edit_time'];
if ( $this->current_permissions['forum_auth_edit_time'] > 0 && time() > $edit_time_end )
{
$Core->showmessage('', sprintf($lang['edit_time_sys_end'], $this->current_permissions['forum_auth_edit_time']), YELLOW, true);
exit;
}
}
else if ( isset($forum_infos['post_created']) )
{
$edit_time_end = $forum_infos['post_created']+$this->current_permissions['forum_auth_edit_time'];
if ( $this->current_permissions['forum_auth_edit_time'] > 0 && time() > $edit_time_end )
{
$Core->showmessage('', sprintf($lang['edit_time_sys_end'], $this->current_permissions['forum_auth_edit_time']), YELLOW, true);
exit;
}
} }
// Insert Modlog?
if ( $this->current_permissions['forum_auth_moderator'] )
{
$whatlog = ($delete_topic)? 'TOPICDEL' : 'DEL';
$Core->insert_mod_log($User->get_user_value('user_id'), $whatlog, $forum_infos['topic_title'], $forum_infos['forum_name']);
}
if ( $topic_del )
{
if ( $this->current_permissions['forum_auth_delete_topic'] == false )
{
$Core->showmessage('', $lang['invalid_postmode'], YELLOW, true);
exit;
}
}
else
{
if ( $this->current_permissions['forum_auth_delete_post'] == false )
{
$Core->showmessage('', $lang['invalid_postmode'], YELLOW, true);
exit;
}
}
}
eval($Core->hook_execute('class_posting_16', 'cback'));
Gerade bemerkt: Das Eingeben eines neuen Posts wird mit derselben Fehlermeldung beantwortet