SecurityForm: Add helptext

refs #6641
This commit is contained in:
Alexander Klimov 2014-08-20 12:19:53 +02:00
parent 071937910b
commit 78b98a7d67
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ class SecurityForm extends Form
array(
'label' => 'Protected Custom Variables',
'required' => true,
'value' => $this->config->protected_customvars
'value' => $this->config->protected_customvars,
'helptext' => 'Comma separated case insensitive list of protected custom variables.'
. ' Use * as a placeholder for zero or more wildcard characters.'
. ' Existance of those custom variables will be shown, but their values will be masked.'
)
);
$this->setSubmitLabel('Save');