Вот сам мод:
Код:
File: /includes/functions_showthread.php
== FIND: =================================================================
$post['joindate'] = vbdate($vboptions['registereddateformat'], $post['joindate']);
--------------------------------------------------------------------------
== AFTER, ADD: ===========================================================
$post['lso_date'] = vbdate($vboptions['dateformat'], $post['lastactivity'], true);
$post['lso_time'] = vbdate($vboptions['timeformat'], $post['lastactivity'], false);
--------------------------------------------------------------------------
## TEMPLATE MODIFICATIONS ################################################
##########################################################################
Template: postbit:
== FIND: =================================================================
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
--------------------------------------------------------------------------
== AFTER, ADD: ===========================================================
<if condition="$post['lastactivity']"><div>$vbphrase[last_seen_online]: $post[lso_date] ($post[lso_time])</div></if>
--------------------------------------------------------------------------
Template: postbit_legacy:
== FIND: =================================================================
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
--------------------------------------------------------------------------
== AFTER, ADD: ===========================================================
<if condition="$post['lastactivity']"><div>$vbphrase[last_seen_online]: $post[lso_date] ($post[lso_time])</div></if>
--------------------------------------------------------------------------
## NEW PHRASES ###########################################################
##########################################################################
Phrase Type: GLOBAL
Varname: last_seen_online
Text: Last Seen
Что значит вот это в нём:
Код:
## NEW PHRASES ###########################################################
##########################################################################
Phrase Type: GLOBAL
Varname: last_seen_online
Text: Last Seen
Создать новый шаблон? Как это сделать конкретно?