Fix the subject of notifications

This commit is contained in:
Joas Schilling 2015-09-02 13:09:46 +02:00
parent 805f1d0096
commit 0d154595f8
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ class Manager implements IManager {
foreach ($notifiers as $notifier) {
try {
$notifier->prepare($notification, $languageCode);
$notification = $notifier->prepare($notification, $languageCode);
} catch (\InvalidArgumentException $e) {
continue;
}

View file

@ -248,7 +248,7 @@ class Notification implements INotification {
* @since 8.2.0
*/
public function getParsedSubject() {
return $this->messageParsed;
return $this->subjectParsed;
}
/**