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

Fix minor typo in subscribe form #461

Merged
merged 2 commits into from
Apr 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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