diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-05-12 18:30:08 +0300 |
|---|---|---|
| committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:42:09 +0200 |
| commit | 504038d230bad8d3de142b488a52695134902a8d (patch) | |
| tree | e5a549b3d251d2bf3f9cbc073828b5dfbc376fe6 /phpBB/adm | |
| parent | ae2700eef29a0cda1ff9abecb9bdc6beaf199982 (diff) | |
| download | forums-504038d230bad8d3de142b488a52695134902a8d.tar forums-504038d230bad8d3de142b488a52695134902a8d.tar.gz forums-504038d230bad8d3de142b488a52695134902a8d.tar.bz2 forums-504038d230bad8d3de142b488a52695134902a8d.tar.xz forums-504038d230bad8d3de142b488a52695134902a8d.zip | |
[ticket/11010] Fix email inputs
Add type="email" to fields that should be email fields
Change back to type="text" fields that might have wildcards or not necessary email
PHPBB3-11010
Diffstat (limited to 'phpBB/adm')
| -rw-r--r-- | phpBB/adm/style/acp_avatar_options_gravatar.html | 2 | ||||
| -rw-r--r-- | phpBB/adm/style/acp_users_profile.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/acp_avatar_options_gravatar.html b/phpBB/adm/style/acp_avatar_options_gravatar.html index 47422a6ecd..ad3891f0a4 100644 --- a/phpBB/adm/style/acp_avatar_options_gravatar.html +++ b/phpBB/adm/style/acp_avatar_options_gravatar.html @@ -1,6 +1,6 @@ <dl> <dt><label for="avatar_gravatar_email">{L_GRAVATAR_AVATAR_EMAIL}{L_COLON}</label><br /><span>{L_GRAVATAR_AVATAR_EMAIL_EXPLAIN}</span></dt> - <dd><input type="text" name="avatar_gravatar_email" id="avatar_gravatar_email" value="{AVATAR_GRAVATAR_EMAIL}" class="inputbox" /></dd> + <dd><input type="email" name="avatar_gravatar_email" id="avatar_gravatar_email" value="{AVATAR_GRAVATAR_EMAIL}" class="inputbox" /></dd> </dl> <dl> <dt><label for="avatar_gravatar_width">{L_GRAVATAR_AVATAR_SIZE}{L_COLON}</label><br /><span>{L_GRAVATAR_AVATAR_SIZE_EXPLAIN}</span></dt> diff --git a/phpBB/adm/style/acp_users_profile.html b/phpBB/adm/style/acp_users_profile.html index 9b98efd283..cad1dca9d8 100644 --- a/phpBB/adm/style/acp_users_profile.html +++ b/phpBB/adm/style/acp_users_profile.html @@ -12,7 +12,7 @@ </dl> <dl> <dt><label for="msn">{L_UCP_MSNM}{L_COLON}</label></dt> - <dd><input type="text" id="msn" name="msn" value="{MSN}" /></dd> + <dd><input type="email" id="msn" name="msn" value="{MSN}" /></dd> </dl> <dl> <dt><label for="yim">{L_UCP_YIM}{L_COLON}</label></dt> @@ -20,7 +20,7 @@ </dl> <dl> <dt><label for="jabber">{L_UCP_JABBER}{L_COLON}</label></dt> - <dd><input type="text" id="jabber" name="jabber" value="{JABBER}" /></dd> + <dd><input type="email" id="jabber" name="jabber" value="{JABBER}" /></dd> </dl> <dl> <dt><label for="website">{L_WEBSITE}{L_COLON}</label></dt> |
