From: Brion Vibber Date: Wed, 30 Nov 2005 22:29:16 +0000 (+0000) Subject: * (bug 3922) Further tweaks to bidi overrides in category list for old X-Git-Tag: 1.6.0~1093 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=55a99518a331e87573fedff41b8456c662994ca4;p=lhc%2Fweb%2Fwiklou.git * (bug 3922) Further tweaks to bidi overrides in category list for old versions of Safari and Konqueror Add RELEASE-NOTES line, and tweak source to be slightly prettier --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1e6349b8ed..839014d17a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -262,6 +262,8 @@ fully support the editing toolbar, but was found to be too confusing. * Fix display of old recentchanges records for page moves * (bug 2111) Collapsable exif metadata table, clean up display * Reduce fractions in display of exif exposure time +* (bug 3922) Further tweaks to bidi overrides in category list for old + versions of Safari and Konqueror === Caveats === diff --git a/includes/Skin.php b/includes/Skin.php index 80915a690e..5abb870ca1 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -428,7 +428,8 @@ END; // Use Unicode bidi embedding override characters, // to make sure links don't smash each other up in ugly ways. - $embed = ""; + $dir = $wgContLang->isRTL() ? 'rtl' : 'ltr'; + $embed = ""; $pop = ''; $t = $embed . implode ( "$pop | $embed" , $wgOut->mCategoryLinks ) . $pop;