{foreach from=$postList item=post name=postList}
{capture assign='tpl'}{capture name='info_string'}
<!-- added -->
{if $isModerator}
<img src="http://www.tibiaevents.com/teamlogo.png" border="0" alt="" />
{/if}
<!-- end add -->
<a href="{$avatars[$post.userId].url}">{$avatars[$post.userId].title}</a>
<span class="ow_tiny ow_ipc_date ow_remark">{$post.createStamp}</span>
{/capture}
{if isModerator}
its referenced both ways so try that.
<!-- added -->
{ if OW::getUser()->isAuthorized('base') }
<img src="http://www.tibiaevents.com/teamlogo.png" border="0" alt="" />
{/if}
<!-- end add -->
ok open ow_plugins/forum/controllers/topic.php
and the second function down about 50 lines down will say
public function index
it looks like this, let me know when you found that
/**
* Controller's default action
*
* @param array $params
*/
public function index( array $params ) {
$userId = OW::getUser()->getId();
$isOwner = ( $topicDto->userId == $userId ) ? true : false;
// logo for moderator only
//initialize var
$isMod = 0;
if(OW::getUser()->isAuthorized('base'))
{
$isMod = 1;
}
$this->assign('isMod', $isMod);
//end logo for moderator only
$postReplyPermissionErrorText = null;