mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Copy permissions protection for groups [Bug #6594] HTML issues in ACP [Bug #6580, #6578] Always send the correct encoding [related to bug #6576] Mass email fixes for first loop iteration [Bug #6570] Extension groups to be allowed in PM's and/or Posts [Bug #6558] Extension allowance checking clarified (no longer using forum id 0 for private messaging) Using request_var() array method for some variables [Bug #6556] Added confirmation for deletion of ranks/smilies/icons/word censores [Bug #6548, #6530, #6512, #6466] Only show postable forums in dropdown list for moving posts on forum deletion as well as correct re-indexing [Bug #6510, #6476, #6384] Jabber password being password field in jabber settings screen [Bug #6478] user activity language variable if viewing not own profile [Bug #6432] Show moderator group/user-name colour [Bug #6402] Log rank creation/updating/removing [Bug #6398] Update check permission changed from a_ to a_board [Bug #6392] git-svn-id: file:///svn/phpbb/trunk@6816 89ea8834-ac86-4346-8a33-228a782c2dd0
74 lines
1.7 KiB
HTML
74 lines
1.7 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<a name="maincontent"></a>
|
|
|
|
<!-- IF S_EDIT_WORD -->
|
|
|
|
<a href="{U_BACK}" style="float: right">« {L_BACK}</a>
|
|
|
|
<h1>{L_ACP_WORDS}</h1>
|
|
|
|
<p>{L_ACP_WORDS_EXPLAIN}</p>
|
|
|
|
<form id="acp_words" method="post" action="{U_ACTION}">
|
|
|
|
<fieldset>
|
|
<legend>{L_EDIT_WORD}</legend>
|
|
<dl>
|
|
<dt><label for="word">{L_WORD}</label></dt>
|
|
<dd><input id="word" type="text" name="word" value="{WORD}" /></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="replacement">{L_REPLACEMENT}</label></dt>
|
|
<dd><input id="replacement" type="text" name="replacement" value="{REPLACEMENT}" /></dd>
|
|
</dl>
|
|
{S_HIDDEN_FIELDS}
|
|
|
|
<p class="submit-buttons">
|
|
<input class="button1" type="submit" id="submit" name="save" value="{L_SUBMIT}" />
|
|
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
|
|
</p>
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
<!-- ELSE -->
|
|
|
|
<h1>{L_ACP_WORDS}</h1>
|
|
|
|
<p>{L_ACP_WORDS_EXPLAIN}</p>
|
|
|
|
<form id="acp_words" method="post" action="{U_ACTION}">
|
|
|
|
<fieldset class="tabulated">
|
|
<legend>{L_ACP_WORDS}</legend>
|
|
<p class="quick">
|
|
{S_HIDDEN_FIELDS}
|
|
<input class="button2" name="add" type="submit" value="{L_ADD_WORD}" />
|
|
</p>
|
|
|
|
<table cellspacing="1">
|
|
<thead>
|
|
<tr>
|
|
<th>{L_WORD}</th>
|
|
<th>{L_REPLACEMENT}</th>
|
|
<th>{L_ACTION}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- BEGIN words -->
|
|
<!-- IF words.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
|
<td style="text-align: center;">{words.WORD}</td>
|
|
<td style="text-align: center;">{words.REPLACEMENT}</td>
|
|
<td> <a href="{words.U_EDIT}">{ICON_EDIT}</a> <a href="{words.U_DELETE}">{ICON_DELETE}</a> </td>
|
|
</tr>
|
|
<!-- END words -->
|
|
</tbody>
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- INCLUDE overall_footer.html -->
|