Hmm znalazłem coś takiego
This tutorial will teach you how to make it so that only a Root Admin can edit another Root Admin's posts. A regular admin, or moderator, will be unable to edit or delete the posts.
ACP Home -> Look & Feel -> Edit Template HTML (for the skin you want this to apply to) -> Topic View -> RenderRow
Find:
[codebox]{$post['delete_button']}{$post['edit_button']}<a href="#" onclick="multiquote_add({$post['pid']}); return false;" title="{$this->ipsclass->lang['mq_title']}">{$post['mq_start_image']}</a><a href="{$this->ipsclass->base_url}act=Post&CODE=02&f={$this->ipsclass->input['f']}&t={$this->ipsclass->input['t']}&qpid={$post['pid']}" title="{$this->ipsclass->lang['tt_reply_to_post']}"><{P_QUOTE}></a>[/codebox]
Replace with:
[codebox]<if="$author['mgroup'] == $this->ipsclass->vars['admin_group']">
<if="$this->ipsclass->member['mgroup'] == $this->ipsclass->vars['admin_group']">
{$post['delete_button']}{$post['edit_button']}
</if>
<else />
{$post['delete_button']}{$post['edit_button']}
</if>
<a href="#" onclick="multiquote_add({$post['pid']}); return false;" title="{$this->ipsclass->lang['mq_title']}">{$post['mq_start_image']}</a><a href="{$this->ipsclass->base_url}act=Post&CODE=02&f={$this->ipsclass->input['f']}&t={$this->ipsclass->input['t']}&qpid={$post['pid']}" title="{$this->ipsclass->lang['tt_reply_to_post']}"><{P_QUOTE}></a>[/codebox]
Lecz to jest pod wersję 2.3 da się to jakoś wykorzystać w 3.4.x ???