mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
- changed current_user in sessions (please review) - give more flexibility to style authors in regard to the pagination elements - profile fields updates (included a sample constuct into viewtopic_body.html - have to be documented extensivly) - code optimizations (use of strpos, sizeof, loops not iterating functions on every call, memory savings...) - and last but not least --- hopefully not introduced more bugs than healthy (*cough*) git-svn-id: file:///svn/phpbb/trunk@4984 89ea8834-ac86-4346-8a33-228a782c2dd0
40 lines
2.2 KiB
HTML
40 lines
2.2 KiB
HTML
|
|
<!-- $Id$ -->
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0">
|
|
<tr>
|
|
<td class="row1"><table border="0" cellspacing="0" cellpadding="0" width="100%"><tr><td align="left">
|
|
<!-- IF TOTAL_MESSAGES -->
|
|
<table width="100%" cellspacing="1">
|
|
<tr>
|
|
<td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td>
|
|
<td class="gensmall" nowrap="nowrap"> [ {TOTAL_MESSAGES} ] </td>
|
|
<td class="gensmall" width="100%" align="right" 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>
|
|
<!-- ENDIF -->
|
|
<!-- IF S_VIEW_MESSAGE -->
|
|
<span class="gensmall">
|
|
<!-- IF U_PRINT_PM --><a href="{U_PRINT_PM}" title="{L_PRINT_PM}">{L_PRINT_PM}</a><!-- IF U_EMAIL_PM or U_FORWARD_PM--> | <!-- ENDIF --><!-- ENDIF -->
|
|
<!-- IF U_EMAIL_PM --><a href="{U_EMAIL_PM}" title="{L_EMAIL_PM}">{L_EMAIL_PM}</a><!-- IF U_FORWARD_PM --> | <!-- ENDIF --><!-- ENDIF -->
|
|
<!-- IF U_FORWARD_PM --><a href="{U_FORWARD_PM}" title="{L_FORWARD_PM}">{L_FORWARD_PM}</a><!-- ENDIF -->
|
|
</span>
|
|
<!-- ENDIF -->
|
|
</td>
|
|
<td align="right" nowrap="nowrap">
|
|
<!-- IF S_VIEW_MESSAGE -->
|
|
<form name="movepm" method="post" action="{S_PM_ACTION}" style="margin:0px">
|
|
<input type="hidden" name="marked_msg_id[]" value="{MSG_ID}" />
|
|
<input type="hidden" name="cur_folder_id" value="{CUR_FOLDER_ID}" />
|
|
<input type="hidden" name="p" value="{MSG_ID}" />
|
|
<!-- ENDIF -->
|
|
<!-- IF not S_UNREAD -->
|
|
<select name="dest_folder">{S_TO_FOLDER_OPTIONS}</select> <input class="btnlite" type="submit" name="move_pm" value="<!-- IF S_VIEW_MESSAGE -->Place Message into Folder<!-- ELSE -->Place Marked into Folder<!-- ENDIF -->" />
|
|
<!-- ENDIF -->
|
|
</form>
|
|
</td></tr></table></td>
|
|
</tr>
|
|
</table>
|
|
<!-- IF not S_VIEW_MESSAGE --><div style="float:right"><b class="gensmall"><a href="javascript:marklist('viewfolder', true);">{L_MARK_ALL}</a> :: <a href="javascript:marklist('viewfolder', false);">{L_UNMARK_ALL}</a></b></div><!-- ENDIF -->
|
|
|