aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-03-27 12:48:29 +0000
committerNils Adermann <naderman@naderman.de>2006-03-27 12:48:29 +0000
commite7140d658d6bd37023eca51d6d01207a34fe2d0e (patch)
tree8955a72e55c25fc4e230ad1f3391ee411a8ec101 /phpBB/adm
parent19b5f17ff8335dc86a25bf97e689723937dc685f (diff)
downloadforums-e7140d658d6bd37023eca51d6d01207a34fe2d0e.tar
forums-e7140d658d6bd37023eca51d6d01207a34fe2d0e.tar.gz
forums-e7140d658d6bd37023eca51d6d01207a34fe2d0e.tar.bz2
forums-e7140d658d6bd37023eca51d6d01207a34fe2d0e.tar.xz
forums-e7140d658d6bd37023eca51d6d01207a34fe2d0e.zip
- add missing pagination to queue/reports
- hide the close button on closed reports page - fix a JS bug in mcp/acp ban view git-svn-id: file:///svn/phpbb/trunk@5733 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/acp_ban.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/adm/style/acp_ban.html b/phpBB/adm/style/acp_ban.html
index 6eed1500e7..735afc9417 100644
--- a/phpBB/adm/style/acp_ban.html
+++ b/phpBB/adm/style/acp_ban.html
@@ -12,16 +12,19 @@
<!--
var ban_length = new Array();
+ ban_length[-1] = "";
<!-- BEGIN ban_length -->
ban_length['{ban_length.BAN_ID}'] = "{ban_length.LENGTH}";
<!-- END ban_length -->
var ban_reason = new Array();
+ ban_reason[-1] = "";
<!-- BEGIN ban_reason -->
ban_reason['{ban_reason.BAN_ID}'] = "{ban_reason.REASON}";
<!-- END ban_reason -->
var ban_give_reason = new Array();
+ ban_give_reason[-1] = "";
<!-- BEGIN ban_give_reason -->
ban_give_reason['{ban_give_reason.BAN_ID}'] = "{ban_give_reason.REASON}";
<!-- END ban_give_reason -->
@@ -81,7 +84,7 @@
<!-- IF S_BANNED_OPTIONS -->
<dl>
<dt><label for="unban">{L_BAN_CELL}:</label></dt>
- <dd><select id="unban" name="unban[]" multiple="multiple" size="10" style="width: 50%" onchange="display_details(this.options[this.selectedIndex].value)">{BANNED_OPTIONS}</select></dd>
+ <dd><select id="unban" name="unban[]" multiple="multiple" size="10" style="width: 50%" onchange="if (this.selectedIndex > -1) display_details(this.options[this.selectedIndex].value); else display_details(-1);">{BANNED_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="unbanlength">{L_BAN_LENGTH}:</label></dt>