
Zitat von
MrNase
Joa, ich habs etwas sauberer gelöst und die Änderungen in der richtigen Datei durchgeführt.
Trotzdem danke.
In includes/functions_forumdisplay suche:
PHP-Code:
// thread last reply date/time
$thread['lastpostdate'] = vbdate($vboptions['dateformat'], $thread['lastpost'], true);
$thread['lastposttime'] = vbdate($vboptions['timeformat'], $thread['lastpost']);
Darunter einfügen:
PHP-Code:
// thread startdate/starttime
$thread['threadstartdate'] = vbdate($vboptions['dateformat'], $thread['dateline'], true);
$thread['threadstarttime'] = vbdate($vboptions['timeformat'], $thread['dateline']);
Im Template threadbit suche:
PHP-Code:
<if condition="$show['guestuser']">
$thread[postusername]
<else />
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]')">$thread[postusername]</span>
</if>
Ersetzen mit:
PHP-Code:
<if condition="$show['guestuser']">
$thread[postusername] - $thread[threadstartdate] <span class="time">$thread[threadstarttime]</span>
<else />
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]')">$thread[postusername]</span> - $thread[threadstartdate] <span class="time">$thread[threadstarttime]</span>
</if>
Demo: Hier
Lesezeichen