1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-31 02:00:14 +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

@@ -246,7 +246,9 @@ $USERSETTINGS_WRAPPER['edit']['SIGNATURE'] = "<div class='form-group'>
// Bootstrap 3 only.
// Bootstrap 3 only.
$USERSETTINGS_TEMPLATE = array();
$USERSETTINGS_TEMPLATE['edit'] = "
@@ -309,7 +311,7 @@ $USERSETTINGS_TEMPLATE['edit'] = "
$USERSETTINGS_TEMPLATE['extended-category'] = "<h3>{CATNAME}</h3>";
$USERSETTINGS_TEMPLATE['extended-field'] = "<div class='form-group'>
<label class='col-sm-3 control-label'>{FIELDNAME}</label>
<label class='col-sm-3 control-label'>{FIELDNAME} {REQUIRED}</label>
<div class='col-sm-9'>
{FIELDVAL} {HIDEFIELD}
</div>
@@ -317,5 +319,3 @@ $USERSETTINGS_TEMPLATE['extended-field'] = "<div class='form-group'>
";
?>