From a1208b3a152b5e234d4ef6a568be6512f9f9e066 Mon Sep 17 00:00:00 2001 From: Lucas Bartholemy Date: Mon, 6 Feb 2017 20:11:01 +0100 Subject: [PATCH] Fixed typo in attribute label --- protected/humhub/modules/installer/forms/SecurityForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protected/humhub/modules/installer/forms/SecurityForm.php b/protected/humhub/modules/installer/forms/SecurityForm.php index e077911f1f..ba8ecd99f3 100644 --- a/protected/humhub/modules/installer/forms/SecurityForm.php +++ b/protected/humhub/modules/installer/forms/SecurityForm.php @@ -61,7 +61,7 @@ class SecurityForm extends \yii\base\Model return array( 'allowGuestAccess' => Yii::t('InstallerModule.forms_SecurityForm', 'Allow access for non-registered users to public content (guest access)'), 'internalRequireApprovalAfterRegistration' => Yii::t('InstallerModule.forms_SecurityForm', 'Newly registered users have to be activated by an admin first'), - 'internalAllowAnonymousRegistration' => Yii::t('InstallerModule.forms_SecurityForm', 'External user can register (The registration form will be displayed at Login))'), + 'internalAllowAnonymousRegistration' => Yii::t('InstallerModule.forms_SecurityForm', 'External user can register (The registration form will be displayed at Login)'), 'canInviteExternalUsersByEmail' => Yii::t('InstallerModule.forms_SecurityForm', 'Registered members can invite new users via email'), 'enableFriendshipModule' => Yii::t('InstallerModule.forms_SecurityForm', 'Allow friendships between members'), );