diff options
author | Vinny <vinny@suportephpbb.com.br> | 2012-08-10 21:39:17 -0300 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:39:53 +0200 |
commit | 05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc (patch) | |
tree | 5805d62cf2986092a5d786df40f9b09d259055ed /phpBB | |
parent | 90becaa1a2e4671f22c62d937770623217364acb (diff) | |
download | forums-05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc.tar forums-05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc.tar.gz forums-05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc.tar.bz2 forums-05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc.tar.xz forums-05ebbbcd6acf3d9e808734ff0ded6a94bd64a9dc.zip |
[ticket/11010] Changing email and url types in adm templates
PHPBB3-11010
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/acp_users_overview.html | 2 | ||||
-rw-r--r-- | phpBB/adm/style/acp_users_profile.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/adm/style/acp_users_overview.html b/phpBB/adm/style/acp_users_overview.html index a8e862c141..1caa6e5e13 100644 --- a/phpBB/adm/style/acp_users_overview.html +++ b/phpBB/adm/style/acp_users_overview.html @@ -43,7 +43,7 @@ </dl> <dl> <dt><label for="user_email">{L_EMAIL}{L_COLON}</label></dt> - <dd><input class="text medium" type="text" id="user_email" name="user_email" value="{USER_EMAIL}" autocomplete="off" /></dd> + <dd><input class="text medium" type="email" id="user_email" name="user_email" value="{USER_EMAIL}" autocomplete="off" /></dd> </dl> <dl> <dt><label for="new_password">{L_NEW_PASSWORD}{L_COLON}</label><br /><span>{L_CHANGE_PASSWORD_EXPLAIN}</span></dt> diff --git a/phpBB/adm/style/acp_users_profile.html b/phpBB/adm/style/acp_users_profile.html index 3232e8d1f5..856f5fc9a8 100644 --- a/phpBB/adm/style/acp_users_profile.html +++ b/phpBB/adm/style/acp_users_profile.html @@ -12,11 +12,11 @@ </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> - <dd><input type="text" id="yim" name="yim" value="{YIM}" /></dd> + <dd><input type="email" id="yim" name="yim" value="{YIM}" /></dd> </dl> <dl> <dt><label for="jabber">{L_UCP_JABBER}{L_COLON}</label></dt> @@ -24,7 +24,7 @@ </dl> <dl> <dt><label for="website">{L_WEBSITE}{L_COLON}</label></dt> - <dd><input type="text" id="website" name="website" value="{WEBSITE}" /></dd> + <dd><input type="url" id="website" name="website" value="{WEBSITE}" /></dd> </dl> <dl> <dt><label for="location">{L_LOCATION}{L_COLON}</label></dt> |