aboutsummaryrefslogtreecommitdiffstats
path: root/includes/changes/ChangesList.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/changes/ChangesList.php')
-rw-r--r--includes/changes/ChangesList.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/includes/changes/ChangesList.php b/includes/changes/ChangesList.php
index 2389997949ae..184a2c10e608 100644
--- a/includes/changes/ChangesList.php
+++ b/includes/changes/ChangesList.php
@@ -617,7 +617,13 @@ class ChangesList extends ContextSource {
return ' <span class="history-deleted">' .
$this->msg( 'rev-deleted-comment' )->escaped() . '</span>';
} else {
- return Linker::commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() );
+ return Linker::commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle(),
+ // Whether section links should refer to local page (using default false)
+ false,
+ // wikid to generate links for (using default null) */
+ null,
+ // whether parentheses should be rendered as part of the message
+ false );
}
}