Merge "Fixes for duplicateStderr (I833aeb3a)"
[lhc/web/wiklou.git] / includes / UserMailer.php
index 0c880d6..8ab10b2 100644 (file)
@@ -751,14 +751,17 @@ class EmailNotification {
                # Replace this after transforming the message, bug 35019
                $postTransformKeys['$PAGESUMMARY'] = $this->summary == '' ? ' - ' : $this->summary;
 
-               # Now build message's subject and body
-               # Give grep a chance to find the usages: enotif_subject_deleted, enotif_subject_created,
-               # enotif_subject_moved, enotif_subject_restored, enotif_subject_changed
+               // Now build message's subject and body
+
+               // Messages:
+               // enotif_subject_deleted, enotif_subject_created, enotif_subject_moved,
+               // enotif_subject_restored, enotif_subject_changed
                $this->subject = wfMessage( 'enotif_subject_' . $this->pageStatus )->inContentLanguage()
                        ->params( $pageTitle, $keys['$PAGEEDITOR'] )->text();
 
-               # Give grep a chance to find the usages: enotif_body_intro_deleted, enotif_body_intro_created,
-               # enotif_body_intro_moved, enotif_body_intro_restored, enotif_body_intro_changed
+               // Messages:
+               // enotif_body_intro_deleted, enotif_body_intro_created, enotif_body_intro_moved,
+               // enotif_body_intro_restored, enotif_body_intro_changed
                $keys['$PAGEINTRO'] = wfMessage( 'enotif_body_intro_' . $this->pageStatus )
                        ->inContentLanguage()->params( $pageTitle, $keys['$PAGEEDITOR'], $pageTitleUrl )
                        ->text();