diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-12-03 11:50:19 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-01 17:26:14 +0100 |
| commit | c9541e07952eec73099701082bc1317ef2bd4c56 (patch) | |
| tree | f33638a991c3a3f28729affbab2a437492e0abc6 /phpBB/styles/prosilver/template | |
| parent | f3c2c497d8443d7cb77eaaf9c8031db1cb3434d9 (diff) | |
| download | forums-c9541e07952eec73099701082bc1317ef2bd4c56.tar forums-c9541e07952eec73099701082bc1317ef2bd4c56.tar.gz forums-c9541e07952eec73099701082bc1317ef2bd4c56.tar.bz2 forums-c9541e07952eec73099701082bc1317ef2bd4c56.tar.xz forums-c9541e07952eec73099701082bc1317ef2bd4c56.zip | |
[ticket/14272] Use input type number instead of text in avatars
PHPBB3-14272
Diffstat (limited to 'phpBB/styles/prosilver/template')
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_avatar_options_remote.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_avatar_options_remote.html b/phpBB/styles/prosilver/template/ucp_avatar_options_remote.html index a8f6135fb2..8e175623ac 100644 --- a/phpBB/styles/prosilver/template/ucp_avatar_options_remote.html +++ b/phpBB/styles/prosilver/template/ucp_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> - <label for="avatar_remote_width"><input type="text" name="avatar_remote_width" id="avatar_remote_width" size="3" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> × - <label for="avatar_remote_height"><input type="text" name="avatar_remote_height" id="avatar_remote_height" size="3" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label> + <label for="avatar_remote_width"><input type="number" name="avatar_remote_width" id="avatar_remote_width" min="{AVATAR_MIN_WIDTH}" max="{AVATAR_MAX_WIDTH}" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> × + <label for="avatar_remote_height"><input type="number" name="avatar_remote_height" id="avatar_remote_height" min="{AVATAR_MIN_HEIGHT}" max="{AVATAR_MAX_HEIGHT}" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label> </dd> </dl> |
