Anyway, I think colspans in Announcements & Moved Topic entries are wrong.
in thread_view_common.inc.t, line 73:
$ann_cols = ($ENABLE_THREAD_RATING == 'Y' ? 9 : 8) + $MOD;
should be
$ann_cols = ($ENABLE_THREAD_RATING == 'Y' ? 8 : 7) + $MOD;
and in thread.tmpl, line 175:
<td class="RowStyleB" colspan=10 align="center" class="GenText">{MSG: was_moved_msg}</td>
should depend upon a variable, but it doesn't. If you have thread rating enabled this line should become:
<td class="RowStyleB" colspan=7 align="center" class="GenText">{MSG: was_moved_msg}</td>
else:
<td class="RowStyleB" colspan=8 align="center" class="GenText">{MSG: was_moved_msg}</td>
But in this way the extra TD you have in the table when you are a moderator/administrator is not considered in the moved topic row.
[Updated on: Tue, 22 July 2003 12:18]
Report message to a moderator