Well I hvae uninstalled it, and reinstalled it.. I am guessing it is something to do with functions.php
here is the part of the code that contains where i have to edit...
Code:
if ($post[edituserid]!=0) {
if ($post['edituserid']!=$post['userid']) {
$edituser=getuserinfo($post[edituserid]);
} else {
$edituser = $post;
}
$post[edittime]=vbdate($timeformat,$post[editdate]);
$post[editdate]=vbdate($dateformat,$post[editdate]);
eval("\$post[editedby] = \"".gettemplate("postbit_editedby")."\";");
// Edit Reason (v1.0)
if ($post[editreason]= !'') {
eval("\$post[editedreason] = \"".gettemplate("postbit_editedreason")."\";");
} else {
$post[editedreason]='';
}
// Edit Reason (v1.0)
} else {
$post[editedby]="";
}
if ($post[dateline]>$bbuserinfo[lastvisit]) {
and this is the part in my postbit template ->
Code:
$post[attachment]
<p>$post[signature]</p>
<p> $post[editedby]</p> <br> $post[editedreason]
</td>
</tr>
<tr>
Any idea?
Ciao