mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9562 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
0c57363fbc
commit
a3c5562a0d
6 changed files with 19 additions and 12 deletions
|
@ -93,6 +93,7 @@
|
|||
<li>[Fix] Correctly determine writable status of files on Windows operating system. (Bug #39035)</li>
|
||||
<li>[Fix] Show report button in prosilver for guests who are allowed to report posts. (Bug #45695 - Patch by bantu)</li>
|
||||
<li>[Fix] Correctly show private message history (Bug #46065 - Patch by bantu)
|
||||
<li>[Fix] Various XHTML mistakes in prosilver and subsilver2. (Bugs #38555, #45505 - Patch by Raimon, #45785, #45865)</li>
|
||||
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
||||
<li>[Feature] Backported 3.2 captcha plugins.</li>
|
||||
<li>[Feature] Introduced new ACM plugins:
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<div class="panel bg2">
|
||||
<div class="inner"><span class="corners-top"><span></span></span>
|
||||
|
||||
|
||||
<p>{L_SEND_IM_EXPLAIN}</p>
|
||||
|
||||
<fieldset>
|
||||
|
@ -81,9 +81,10 @@
|
|||
|
||||
<span class="corners-bottom"><span></span></span></div>
|
||||
</div>
|
||||
<a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
||||
</form>
|
||||
|
||||
<a href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
||||
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="post bg2" id="preview">
|
||||
<div class="post <!-- IF S_PRIVMSGS -->pm<!-- ELSE -->bg2<!-- ENDIF -->" id="preview">
|
||||
<div class="inner"><span class="corners-top"><span></span></span>
|
||||
|
||||
<!-- IF S_HAS_POLL_OPTIONS -->
|
||||
|
@ -19,16 +19,16 @@
|
|||
<span class="corners-bottom"><span></span></span></div>
|
||||
</div>
|
||||
|
||||
<div class="post <!-- IF S_PRIVMSGS --> pm<!-- ELSE --> bg2<!-- ENDIF -->">
|
||||
<div class="post bg2">
|
||||
<div class="inner"><span class="corners-top"><span></span></span>
|
||||
|
||||
<!-- ENDIF -->
|
||||
|
||||
<div class="postbody">
|
||||
<h3>{L_PREVIEW}: {PREVIEW_SUBJECT}</h3>
|
||||
|
||||
|
||||
<div class="content">{PREVIEW_MESSAGE}</div>
|
||||
|
||||
|
||||
<!-- IF .attachment -->
|
||||
<dl class="attachbox">
|
||||
<dt>{L_ATTACHMENTS}</dt>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<!-- END attachment -->
|
||||
</dl>
|
||||
<!-- ENDIF -->
|
||||
|
||||
|
||||
<!-- IF PREVIEW_SIGNATURE --><div class="signature">{PREVIEW_SIGNATURE}</div><!-- ENDIF -->
|
||||
</div>
|
||||
|
||||
|
|
|
@ -131,9 +131,9 @@
|
|||
<!-- ENDIF -->
|
||||
|
||||
</table>
|
||||
<a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
||||
{S_FORM_TOKEN}
|
||||
</form>
|
||||
|
||||
<a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
|
||||
|
||||
<!-- INCLUDE simple_footer.html -->
|
|
@ -8,7 +8,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="genmed"><!-- IF SEARCH_TOPIC -->{L_SEARCHED_TOPIC}: <a href="{U_SEARCH_TOPIC}"><b>{SEARCH_TOPIC}</b></a><br /><!-- ENDIF --><!-- IF SEARCH_WORDS -->{L_SEARCHED_FOR}: <a href="{U_SEARCH_WORDS}"><b>{SEARCH_WORDS}</b></a><!-- ENDIF --><!-- IF IGNORED_WORDS --> {L_IGNORED_TERMS}: <b>{IGNORED_WORDS}</b><!-- ENDIF --></td>
|
||||
<td align="{S_CONTENT_FLOW_END}"><!-- IF SEARCH_IN_RESULTS --><span class="genmed">{L_SEARCH_IN_RESULTS}: </span><input type="text" name="add_keywords" value="" /> <input class="btnlite" type="submit" name="submit" value="{L_GO}" /><!-- ENDIF --></td>
|
||||
<td align="{S_CONTENT_FLOW_END}"><!-- IF SEARCH_IN_RESULTS --><span class="genmed">{L_SEARCH_IN_RESULTS}: </span><input class="post" type="text" name="add_keywords" value="" /> <input class="btnlite" type="submit" name="submit" value="{L_GO}" /><!-- ENDIF --></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
|
|
@ -118,9 +118,9 @@
|
|||
<!-- ENDIF -->
|
||||
</table>
|
||||
{S_HIDDEN_FIELDS}
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
|
@ -155,7 +155,7 @@
|
|||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<!-- IF postrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
||||
|
||||
<td valign="top" class="profile">
|
||||
|
@ -179,6 +179,11 @@
|
|||
<tr>
|
||||
<td>{postrow.POSTER_AVATAR}</td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF not (postrow.ONLINE_IMG or postrow.RANK_TITLE or postrow.RANK_IMG or postrow.POSTER_AVATAR) -->
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
</table>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue