Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #461 from jbrauer/bugs/join_group_typo
Browse files Browse the repository at this point in the history
Fix minor typo in subscribe form
  • Loading branch information
pfrenssen authored Apr 23, 2019
2 parents eccd5b4 + a244dc5 commit 9a92d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Form/GroupSubscribeForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
/** @var EntityInterface $group */
$group = $membership->getGroup();

$message = $membership->isActive() ? $this->t('Your are now subscribed to the group.') : $this->t('Your subscription request was sent.');
$message = $membership->isActive() ? $this->t('You are now subscribed to the group.') : $this->t('Your subscription request has been sent.');
$this->messenger()->addMessage($message);

// User doesn't have access to the group entity, so redirect to front page,
Expand Down

0 comments on commit 9a92d8d

Please sign in to comment.