Ok I found out why!
Something is messed up in my functions.php!
The "edited by"
won't show when I make the new changes in it.
anyone see anything the matter with this?
I am including the chunk on code before and after on my functions.php
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]);
// 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]) {
$post[foldericon]="<img src=\"{imagesfolder}/posticonnew.gif\" border=\"0\" alt=\"New Post\">";
} else {
$post[foldericon]="<img src=\"{imagesfolder}/posticon.gif\" border=\"0\" alt=\"Old Post\">";
}
if (!$forum[allowicons] or $post[iconid]==0) {
if ($showdeficon) {
$post[icon]='<img src="{imagesfolder}/icons/icon1.gif" border="0" alt="">';
|