1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00

Fixes #782 - Missing extended fields on usersettings page when using Bootstrap 2 theme.

This commit is contained in:
Cameron
2014-10-15 15:38:50 -07:00
parent 26944fbbb7
commit 7a7a98cb5d
3 changed files with 10 additions and 9 deletions

View File

@@ -688,7 +688,7 @@ class e107_user_extended
{
case EUF_TEXT : //textbox
case EUF_INTEGER : //integer
$ret = "<input id='{$fid}' name='{$fname}' value='{$curval}' {$include} {$required} />";
$ret = "<input id='{$fid}' type='text' name='{$fname}' value='{$curval}' {$include} {$required} />";
return $ret;
break;