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
73 lines
3.4 KiB
HTML
73 lines
3.4 KiB
HTML
<!-- INCLUDE ucp_header.html -->
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1">
|
|
<tr>
|
|
<th colspan="2" valign="middle">{L_TITLE}</th>
|
|
</tr>
|
|
<!-- IF ERROR -->
|
|
<tr>
|
|
<td class="row3" colspan="2" align="center"><span class="gensmall" style="color:red">{ERROR}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_IMAGES}:</b></td>
|
|
<td class="row2"><input type="radio" name="images" value="1"{VIEW_IMAGES_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="images" value="0"{VIEW_IMAGES_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_FLASH}:</b></td>
|
|
<td class="row2"><input type="radio" name="flash" value="1"{VIEW_FLASH_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="flash" value="0"{VIEW_FLASH_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_SMILIES}:</b></td>
|
|
<td class="row2"><input type="radio" name="smilies" value="1"{VIEW_SMILIES_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="smilies" value="0"{VIEW_SMILIES_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_SIGS}:</b></td>
|
|
<td class="row2"><input type="radio" name="sigs" value="1"{VIEW_SIGS_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="sigs" value="0"{VIEW_SIGS_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_AVATARS}:</b></td>
|
|
<td class="row2"><input type="radio" name="avatars" value="1"{VIEW_AVATARS_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="avatars" value="0"{VIEW_AVATARS_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<!-- IF S_CHANGE_CENSORS -->
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_DISABLE_CENSORS}:</b></td>
|
|
<td class="row2"><input type="radio" name="wordcensor" value="1"{DISABLE_CENSORS_YES} /><span class="gen">{L_YES}</span> <input type="radio" name="wordcensor" value="0"{DISABLE_CENSORS_NO} /><span class="gen">{L_NO}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td colspan="2" class="spacer"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_TOPICS_DAYS}:</b></td>
|
|
<td class="row2">{S_TOPIC_SORT_DAYS}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_TOPICS_KEY}:</b></td>
|
|
<td class="row2">{S_TOPIC_SORT_KEY}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_TOPICS_DIR}:</b></td>
|
|
<td class="row2">{S_TOPIC_SORT_DIR}</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="spacer"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_POSTS_DAYS}:</b></td>
|
|
<td class="row2">{S_POST_SORT_DAYS}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_POSTS_KEY}:</b></td>
|
|
<td class="row2">{S_POST_SORT_KEY}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" width="50%"><b class="genmed">{L_VIEW_POSTS_DIR}:</b></td>
|
|
<td class="row2">{S_POST_SORT_DIR}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input class="btnmain" type="submit" name="submit" value="{L_SUBMIT}" /> <input class="btnlite" type="reset" value="{L_RESET}" name="reset" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- INCLUDE ucp_footer.html --> |