r108807 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r108806
|
r108807
|
r108808
>
Date:
13:30, 13 January 2012
Author:
ialex
Status:
ok
Tags:
Comment:
Fix for
r108376
: the whole string is already espcaed on output, no need to escape it twice
Modified paths:
/trunk/phase3/includes/OutputPage.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/OutputPage.php
—
—
@@ -813,7 +813,7 @@
814
814
$this->mPagetitle = $nameWithTags;
815
815
816
816
# change "<i>foo&bar</i>" to "foo&bar"
817
- $this->setHTMLTitle( $this->msg( 'pagetitle' )->rawParams( Sanitizer::stripAllTags( $nameWithTags ) )->escaped() );
817
+ $this->setHTMLTitle( $this->msg( 'pagetitle' )->rawParams( Sanitizer::stripAllTags( $nameWithTags ) ) );
818
818
}
819
819
820
820
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r108376
Fix double-escaping in 108312
krinkle
00:15, 9 January 2012
Status & tagging log
14:29, 13 January 2012
Nikerabbit
(
talk
|
contribs
)
changed the
status
of r108807
[
removed:
new
added:
ok]