Skip to content
Snippets Groups Projects
Commit 66bc8127 authored by Claudiu Cristea's avatar Claudiu Cristea
Browse files

ISAICP-7477: Some grammar.

parent 7df04575
No related branches found
Tags v1.88.2
No related merge requests found
...@@ -350,7 +350,7 @@ Feature: Log in through EU Login ...@@ -350,7 +350,7 @@ Feature: Log in through EU Login
When I fill in "E-mail address" with "joe@example.com" When I fill in "E-mail address" with "joe@example.com"
When I fill in "Password" with "123" When I fill in "Password" with "123"
And I press "Log in" And I press "Log in"
Then I should see the error message "Registering new accounts to Joinup is temporary disabled. Please come back later." Then I should see the error message "Registering new accounts to Joinup is temporarily disabled. Please come back later."
# Check that the user is not logged in. # Check that the user is not logged in.
And I should see the link "Sign in" And I should see the link "Sign in"
......
...@@ -143,7 +143,7 @@ public function prepareAttributes(CasPostValidateEvent $event): void { ...@@ -143,7 +143,7 @@ public function prepareAttributes(CasPostValidateEvent $event): void {
public function disableRegistration(CasPreRegisterEvent $event): void { public function disableRegistration(CasPreRegisterEvent $event): void {
if ($this->state->get('joinup_eulogin.registration_disabled', FALSE)) { if ($this->state->get('joinup_eulogin.registration_disabled', FALSE)) {
$event $event
->cancelAutomaticRegistration($this->t('Registering new accounts to Joinup is temporary disabled. Please come back later.')) ->cancelAutomaticRegistration($this->t('Registering new accounts to Joinup is temporarily disabled. Please come back later.'))
->stopPropagation(); ->stopPropagation();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment