diff options
author | Vinny <vinny@suportephpbb.com.br> | 2012-08-10 21:32:15 -0300 |
---|---|---|
committer | Senky <jakubsenko@gmail.com> | 2013-05-20 18:39:50 +0200 |
commit | 90becaa1a2e4671f22c62d937770623217364acb (patch) | |
tree | a0ba4a9781727415f24c1a3ed98a81425cbd41f7 | |
parent | e09412db58b3f081cf458637e652eb420da8eeaf (diff) | |
download | forums-90becaa1a2e4671f22c62d937770623217364acb.tar forums-90becaa1a2e4671f22c62d937770623217364acb.tar.gz forums-90becaa1a2e4671f22c62d937770623217364acb.tar.bz2 forums-90becaa1a2e4671f22c62d937770623217364acb.tar.xz forums-90becaa1a2e4671f22c62d937770623217364acb.zip |
[ticket/11010] yahoo and msn user search fields changed to email input type
PHPBB3-11010
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_search.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_search.html b/phpBB/styles/prosilver/template/memberlist_search.html index 99ee95eedb..b80e08f9ec 100644 --- a/phpBB/styles/prosilver/template/memberlist_search.html +++ b/phpBB/styles/prosilver/template/memberlist_search.html @@ -68,11 +68,11 @@ function insert_single(user) </dl> <dl> <dt><label for="yahoo">{L_YIM}{L_COLON}</label></dt> - <dd><input type="text" name="yahoo" id="yahoo" value="{YAHOO}" class="inputbox" /></dd> + <dd><input type="email" name="yahoo" id="yahoo" value="{YAHOO}" class="inputbox" /></dd> </dl> <dl> <dt><label for="msn">{L_MSNM}{L_COLON}</label></dt> - <dd><input type="text" name="msn" id="msn" value="{MSNM}" class="inputbox" /></dd> + <dd><input type="email" name="msn" id="msn" value="{MSNM}" class="inputbox" /></dd> </dl> </fieldset> |