Skip to content

Commit e1e0e6a

Browse files
committed
1717: introduce space between texts
1 parent 7492cdd commit e1e0e6a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/Domain/Notifications/Services/Notifications.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,7 @@ public function processMentions(string $content, string $module, int $moduleId,
146146
$subject = sprintf($this->language->__('text.x_mentioned_you'), $authorName);
147147
$mailer->setSubject($subject);
148148

149-
$emailMessage = $subject;
150-
$emailMessage .= sprintf($this->language->__('text.click_here'), $url);
149+
$emailMessage = $subject . " " . sprintf($this->language->__('text.click_here'), $url);
151150
$mailer->setHtml($emailMessage);
152151

153152
$taggedUserObject = $this->userRepository->getUser($taggedUser);

0 commit comments

Comments
 (0)