This commit is contained in:
Roman Kelesidis 2023-12-19 08:32:06 +07:00
parent 54907f0133
commit f657a4da62
2 changed files with 5 additions and 3 deletions

View File

@ -82,6 +82,7 @@ if ($watch_count > 0)
'REPLIES' => $watch[$i]['topic_replies'],
'AUTHOR' => profile_url($watch[$i]),
'LAST_POST' => bb_date($watch[$i]['topic_last_post_time']) .'<br />'. profile_url(array('user_id' => $watch[$i]['last_user_id'], 'username' => $watch[$i]['last_username'], 'user_rank' => $watch[$i]['last_user_rank'])),
'LAST_POST_RAW' => $watch[$i]['topic_last_post_time'],
'LAST_POST_ID' => $watch[$i]['topic_last_post_id'],
'IS_UNREAD' => $is_unread,
'TOPIC_ICON' => get_topic_icon($watch[$i], $is_unread),

View File

@ -94,8 +94,8 @@ td.topic_id { cursor: pointer; }
<th class="{sorter: 'text'}" width="25%"><b class="tbs-text">{L_FORUM}</b></th>
<th class="{sorter: 'text'}" width="75%"><b class="tbs-text">{L_TOPIC}</b></th>
<th class="{sorter: 'text'}"><b class="tbs-text">{L_AUTHOR}</b></th>
<th width="80" class="{sorter: 'text'}"><b class="tbs-text">{L_REPLIES}</b></th>
<th width="120" class="{sorter: 'text'} nowrap"><b class="tbs-text">{L_LASTPOST}</b></th>
<th width="80" class="{sorter: 'digit'}"><b class="tbs-text">{L_REPLIES}</b></th>
<th width="120" class="{sorter: 'digit'} nowrap"><b class="tbs-text">{L_LASTPOST}</b></th>
</tr>
</thead>
<!-- BEGIN watch -->
@ -112,6 +112,7 @@ td.topic_id { cursor: pointer; }
<td>{watch.AUTHOR}</td>
<td class="gensmall">{watch.REPLIES}</td>
<td class="gensmall nowrap">
<u>{watch.LAST_POST_RAW}</u>
{watch.LAST_POST}<!-- IF watch.IS_UNREAD --><a href="{TOPIC_URL}{watch.TOPIC_ID}{NEWEST_URL}">{ICON_NEWEST_REPLY}</a><!-- ELSE -->
<a href="{POST_URL}{watch.LAST_POST_ID}#{watch.LAST_POST_ID}">{ICON_LATEST_REPLY}</a><!-- ENDIF -->
</td>
@ -124,4 +125,4 @@ td.topic_id { cursor: pointer; }
</td>
</tr>
</tfoot>
</table>
</table>