Okay, pure nightmare here. In showthread.php I have to find this code:
PHP Code:
if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0))
{ show_nopermission(); } if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") { $pagenumber=1; }
But in mine (2.2.6), it's smaller:
PHP Code:
if (!$getperms['canviewothers'] and ($thread['postuserid']!=$bbuserinfo['userid'] or $bbuserinfo['userid']==0)) {
show_nopermission();
}
So I replace all that with this?
PHP Code:
if (!$getperms['canviewothers'] and $thread['postuserid']!=$bbuserinfo['userid'])
{ show_nopermission(); } if (($bbuserinfo['userid']!=$thread['postuserid']) and (!$getperms['canviewothers']
or !$getperms['canreplyothers'])) { $replybox=''; } elseif (!$getperms['canview'] or (!$getperms['canreplyown']
and $bbuserinfo['userid']==$thread['postuserid']))
{ $replybox=''; } elseif (!$thread['open'] and
!ismoderator($thread['forumid'],'canopenclose')) { $replybox=''; } else { $textareacols = gettextareawidth(); eval("\$replybox = \"".gettemplate
('showthread_replybox')."\";"); } if ((!isset($pagenumber) or $pagenumber==0) and $pagenumber!="lastpage") { $pagenumber=1; }
Then I create a new template called showthread_replybox. Do I add the same code to this template?
Then the instructions say:
Quote:
3. In the "showthread" template add $replybox right after the following: // $pagenav
|
Does it mean the showthread_replybox template or the major Show Thread Templates > Expand > showthread ??
Anyhow, this: $pagenav, is in neither.
WTF??