This commit is contained in:
Roman Kelesidis 2023-10-26 21:48:16 +07:00
parent 0e2cd05064
commit 1236959d50
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,7 @@ require(CLASS_DIR . 'utf8.php');
require(CLASS_DIR . 'correct.php'); require(CLASS_DIR . 'correct.php');
require(CLASS_DIR . 'reflection.php'); require(CLASS_DIR . 'reflection.php');
$page_cfg['use_tablesorter'] = true;
$page_cfg['load_tpl_vars'] = array( $page_cfg['load_tpl_vars'] = array(
'post_buttons', 'post_buttons',
'post_icons', 'post_icons',

View File

@ -138,13 +138,14 @@ function show_edit_options ()
</div> </div>
<!-- ENDIF --> <!-- ENDIF -->
<table class="forumline forum"> <table class="forumline tablesorter forum">
<col class="row1"> <col class="row1">
<col class="row1" width="25%"> <col class="row1" width="25%">
<col class="row4" width="75%"> <col class="row4" width="75%">
<col class="row1"> <col class="row1">
<col class="row4"> <col class="row4">
<col class="row1"> <col class="row1">
<thead>
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<th title="{L_FORUM}">{L_FORUM}</th> <th title="{L_FORUM}">{L_FORUM}</th>
@ -153,6 +154,7 @@ function show_edit_options ()
<th title="{L_REPLIES}">{L_REPLIES_SHORT}</th> <th title="{L_REPLIES}">{L_REPLIES_SHORT}</th>
<th title="{L_LASTPOST}">{L_LASTPOST}</th> <th title="{L_LASTPOST}">{L_LASTPOST}</th>
</tr> </tr>
</thead>
<!-- BEGIN t --> <!-- BEGIN t -->
<tr id="tr-{t.TOPIC_ID}" class="tCenter"> <tr id="tr-{t.TOPIC_ID}" class="tCenter">
<td id="{t.TOPIC_ID}" class="topic_id"> <td id="{t.TOPIC_ID}" class="topic_id">
@ -187,6 +189,7 @@ function show_edit_options ()
</td> </td>
</tr> </tr>
<!-- END t --> <!-- END t -->
<tfoot>
<!-- IF MY_POSTS --> <!-- IF MY_POSTS -->
<tr id="mod-action-row"> <tr id="mod-action-row">
<td colspan="6" id="mod-action-cell" class="row2"> <td colspan="6" id="mod-action-cell" class="row2">
@ -208,6 +211,7 @@ function show_edit_options ()
<!-- ENDIF --> <!-- ENDIF -->
</td> </td>
</tr> </tr>
</tfoot>
</table> </table>
<!-- IF DL_CONTROLS --> <!-- IF DL_CONTROLS -->