1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Fixes #3676 - 'required' was not displayed on extended user fields.

This commit is contained in:
Cameron
2019-02-14 14:29:25 -08:00
parent 8c483494ce
commit db849f9fd7
3 changed files with 20 additions and 5 deletions

View File

@@ -1110,7 +1110,7 @@ function req($field)
$ret = "";
if ($field == 2)
{
$ret = "<span class='required'> *</span>";
$ret = "<span class='required'><!-- empty --></span>";
}
return $ret;
}