diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-05-13 23:20:34 +0300 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:42:11 +0200 |
commit | 3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328 (patch) | |
tree | eb974d6ab81f1bf5ff896a8fc3bc0d61a7bdeb83 /phpBB/adm/style/acp_prune_forums.html | |
parent | cfa23c11029e1aad2cd14948b7b673db7b50575f (diff) | |
download | forums-3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328.tar forums-3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328.tar.gz forums-3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328.tar.bz2 forums-3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328.tar.xz forums-3e64c1b5d77dd4333c94c3688e0ba47ca7dcf328.zip |
[ticket/11010] Fixes for number input in acp
PHPBB3-11010
Diffstat (limited to 'phpBB/adm/style/acp_prune_forums.html')
-rw-r--r-- | phpBB/adm/style/acp_prune_forums.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_prune_forums.html b/phpBB/adm/style/acp_prune_forums.html index aede662bcb..67cdaa784a 100644 --- a/phpBB/adm/style/acp_prune_forums.html +++ b/phpBB/adm/style/acp_prune_forums.html @@ -73,11 +73,11 @@ <legend>{L_FORUM_PRUNE}</legend> <dl> <dt><label for="prune_days">{L_PRUNE_NOT_POSTED}{L_COLON}</label></dt> - <dd><input type="text" id="prune_days" name="prune_days" /></dd> + <dd><input type="number" id="prune_days" name="prune_days" /></dd> </dl> <dl> <dt><label for="prune_vieweddays">{L_PRUNE_NOT_VIEWED}{L_COLON}</label></dt> - <dd><input type="text" id="prune_vieweddays" name="prune_vieweddays" /></dd> + <dd><input type="number" id="prune_vieweddays" name="prune_vieweddays" /></dd> </dl> <dl> <dt><label for="polls">{L_PRUNE_OLD_POLLS}{L_COLON}</label><br /><span>{L_PRUNE_OLD_POLLS_EXPLAIN}</span></dt> |