mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
- fix a bunch of bugs - <!-- $Id$ --> is no longer allowed in template (.html) files - changed layout of private message screens (folders are menu items) - removed unread mode for private messages - added new feature to template engine - "jump out of loop" or "loop another loop within my loop" :D (will be documented within the coding guidelines) - added autologin field to sessions - check session length checks - added add_log statement to sessions to track session valid to invalid changes if ip/browser change depending on config settings (only debug) - added multibyte support for various variables (exception at the moment is usernames which needs some discussion) - hopefully not broke something. :/ git-svn-id: file:///svn/phpbb/trunk@5765 89ea8834-ac86-4346-8a33-228a782c2dd0
50 lines
2.5 KiB
HTML
50 lines
2.5 KiB
HTML
<!-- INCLUDE mcp_header.html -->
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="2" border="0">
|
|
<form method="post" name="mcp" action="{S_MCP_ACTION}">
|
|
<tr>
|
|
<th colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" height="28" nowrap="nowrap">{L_DISPLAY_OPTIONS}</th>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" class="cat" height="28" align="center"><span class="gensmall">{L_DISPLAY_LOG}:</span> {S_SELECT_SORT_DAYS} <span class="gensmall">{L_SORT_BY}</span> {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} <input class="btnlite" type="submit" name="sort" value="{L_GO}" /></span></td>
|
|
</tr>
|
|
<tr>
|
|
<th width="15%" height="28" nowrap="nowrap">{L_USERNAME}</th>
|
|
<th width="12%" nowrap="nowrap">{L_IP}</th>
|
|
<th width="18%" nowrap="nowrap">{L_TIME}</th>
|
|
<th width="45%" nowrap="nowrap">{L_ACTION}</th>
|
|
<!-- IF not S_TOPIC_ID -->
|
|
<th width="8%" nowrap="nowrap"></th>
|
|
<!-- ENDIF -->
|
|
</tr>
|
|
<!-- IF S_TOPIC_ID -->
|
|
<tr>
|
|
<td class="row3" colspan="5"><span class="gensmall">{L_LOGS_CURRENT_TOPIC} <a href="{U_VIEWTOPIC}"><b>{TOPIC_NAME}</b></a></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- BEGIN log -->
|
|
<tr>
|
|
<td class="row1" nowrap="nowrap"><span class="gen">{log.USERNAME}</span></td>
|
|
<td class="row1" align="center" nowrap="nowrap"><span class="gen">{log.IP}</span></td>
|
|
<td class="row1" align="center" nowrap="nowrap"><span class="gensmall">{log.TIME}</span></td>
|
|
<td class="row1"><span class="gen">{log.ACTION}</span></td>
|
|
<!-- IF not S_TOPIC_ID -->
|
|
<td class="row1" align="center" nowrap="nowrap"><span class="gensmall"><!-- IF log.U_VIEWTOPIC --><a href="{log.U_VIEWTOPIC}">{L_VIEW_TOPIC}</a><!-- IF log.U_VIEWLOGS --> | <!-- ENDIF --><!-- ENDIF --><!-- IF log.U_VIEWLOGS --><a href="{log.U_VIEWLOGS}">{L_VIEW_TOPIC_LOGS}</a><!-- ENDIF --></span></td>
|
|
<!-- ENDIF -->
|
|
</tr>
|
|
<!-- BEGINELSE -->
|
|
<tr>
|
|
<td class="row1" colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
|
|
</tr>
|
|
<!-- END log -->
|
|
</form>
|
|
</table>
|
|
|
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
|
<tr>
|
|
<td class="nav" align="left" valign="middle">{PAGE_NUMBER}</td>
|
|
<td align="right" valign="top" nowrap="nowrap"><!-- IF PAGINATION --><b><a href="javascript:jumpto();">{L_GOTO_PAGE}</a> <!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}">{L_PREVIOUS}</a> <!-- ENDIF -->{PAGINATION}<!-- IF NEXT_PAGE --> <a href="{NEXT_PAGE}">{L_NEXT}</a><!-- ENDIF --></b><!-- ENDIF --></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- INCLUDE mcp_footer.html --> |