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_avatar_options_remote.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_avatar_options_remote.html')
-rw-r--r-- | phpBB/adm/style/acp_avatar_options_remote.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_avatar_options_remote.html b/phpBB/adm/style/acp_avatar_options_remote.html index 490f9ec91f..1c0e3db599 100644 --- a/phpBB/adm/style/acp_avatar_options_remote.html +++ b/phpBB/adm/style/acp_avatar_options_remote.html @@ -5,7 +5,7 @@ <dl> <dt><label for="avatar_remote_width">{L_LINK_REMOTE_SIZE}{L_COLON}</label><br /><span>{L_LINK_REMOTE_SIZE_EXPLAIN}</span></dt> <dd> - <input type="text" name="avatar_remote_width" id="avatar_remote_width" size="3" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL} × - <input type="text" name="avatar_remote_height" id="avatar_remote_height" size="3" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL} + <input type="number" name="avatar_remote_width" id="avatar_remote_width" size="3" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL} × + <input type="number" name="avatar_remote_height" id="avatar_remote_height" size="3" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL} </dd> </dl> |