Quote:
Originally Posted by Nickeh32
I have a question, i've put postreport.php in the usercp but when i open it it deosn't have the usercp links at the side, i was wondering if someone could help, thanks!
|
To do that you could change the postreports template to:
Code:
$pagenav
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="9">
$vbphrase[postreports_yourpostreports]
</td>
</tr>
</thead>
<tbody>
<tr>
<td class="thead">$vbphrase[postreports_postnumber]</td>
<td class="thead">$vbphrase[postreports_postedby]</td>
<td class="thead">$vbphrase[postreports_onthread]</td>
<td class="thead">$vbphrase[postreports_yourcomment]</td>
<td class="thead">$vbphrase[postreports_timestamp]</td>
<td class="thead">$vbphrase[postreports_status]</td>
<td class="thead">$vbphrase[postreports_moderator]</td>
<td class="thead">$vbphrase[postreports_comment]</td>
<td class="thead">$vbphrase[postreports_updated]</td>
</tr>
$postreportbits
<tr>
<td colspan="9" class="tfoot">
</td>
</tr>
</tbody>
</table>
Then in postreports.php change
Code:
eval('print_output("' . fetch_template('postreports') . '");');
eval('$footer = "' . fetch_template('footer') . '";');
echo $footer;
to
Code:
eval('$HTML = "' . fetch_template('postreports') . '";');
eval('print_output("' . fetch_template('USERCP_SHELL') . '");');