diff --git a/security/PermissionCheckboxSetField.php b/security/PermissionCheckboxSetField.php
index 2c480a489..e43717a92 100644
--- a/security/PermissionCheckboxSetField.php
+++ b/security/PermissionCheckboxSetField.php
@@ -206,9 +206,19 @@ class PermissionCheckboxSetField extends FormField {
}
}
if($this->readonly) {
- return "
id()}\" class=\"optionset checkboxsetfield{$this->extraClass()}\">\n- Assigning groups to this user will adjust the permissions they have. See the groups section for details of permissions on individual groups.
$options
\n";
+ return "id()}\" class=\"optionset checkboxsetfield{$this->extraClass()}\">\n" .
+ "- " .
+ _t(
+ 'Permissions.UserPermissionsIntro',
+ 'Assigning groups to this user will adjust the permissions they have. See the groups section for details of permissions on individual groups.'
+ ) .
+ "
" .
+ $options .
+ "
\n";
} else {
- return "id()}\" class=\"optionset checkboxsetfield{$this->extraClass()}\">\n$options
\n";
+ return "id()}\" class=\"optionset checkboxsetfield{$this->extraClass()}\">\n" .
+ $options .
+ "
\n";
}
}