Merge "fix sidebar HTML escaping in CologneBlue"
This commit is contained in:
commit
bbbeb0765b
1 changed files with 1 additions and 1 deletions
|
|
@ -647,7 +647,7 @@ class CologneBlueTemplate extends BaseTemplate {
|
|||
|
||||
$headingMsg = wfMessage( $heading );
|
||||
$any_link = false;
|
||||
$t = $this->menuHead( $headingMsg->exists() ? $headingMsg->text() : $heading );
|
||||
$t = $this->menuHead( $headingMsg->exists() ? $headingMsg->text() : htmlspecialchars( $heading ) );
|
||||
|
||||
foreach ( $links as $key => $link ) {
|
||||
// Can be empty due to rampant sidebar massaging we're doing above
|
||||
|
|
|
|||
Loading…
Reference in a new issue