diff --git a/lib/Settings/Admin.php b/lib/Settings/Admin.php index f579fc9..47937c9 100644 --- a/lib/Settings/Admin.php +++ b/lib/Settings/Admin.php @@ -104,7 +104,7 @@ class Admin implements ISettings { 'required' => true, ], 'require_provisioned_account' => [ - 'text' => $this->l10n->t('Only allow authentication if an account exists on some other backend. (e.g. LDAP)'), + 'text' => $this->l10n->t('Only allow authentication if an account exists on some other backend (e.g. LDAP).'), 'type' => 'checkbox', 'global' => true, ] diff --git a/tests/unit/Settings/AdminTest.php b/tests/unit/Settings/AdminTest.php index cbc99a7..6c3eae0 100644 --- a/tests/unit/Settings/AdminTest.php +++ b/tests/unit/Settings/AdminTest.php @@ -105,7 +105,7 @@ class AdminTest extends \Test\TestCase { 'required' => true, ], 'require_provisioned_account' => [ - 'text' => 'Only allow authentication if an account exists on some other backend. (e.g. LDAP)', + 'text' => 'Only allow authentication if an account exists on some other backend (e.g. LDAP).', 'type' => 'checkbox', 'global' => true, ],