From: Robin Pepermans Date: Mon, 12 Dec 2011 16:23:28 +0000 (+0000) Subject: Follow-up to r105870: dir="auto" on page title also for legacy skins (cologneblue... X-Git-Tag: 1.31.0-rc.0~26039 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=8431de6dee61fc1170320c908a0389a7769bf9fa;p=lhc%2Fweb%2Fwiklou.git Follow-up to r105870: dir="auto" on page title also for legacy skins (cologneblue etc) --- diff --git a/includes/SkinLegacy.php b/includes/SkinLegacy.php index 5d1f4bdc3b..3e1d69821b 100644 --- a/includes/SkinLegacy.php +++ b/includes/SkinLegacy.php @@ -486,7 +486,7 @@ class LegacyTemplate extends BaseTemplate { */ function pageTitle() { global $wgOut; - $s = '

' . $wgOut->getPageTitle() . '

'; + $s = '

' . $wgOut->getPageTitle() . '

'; return $s; }