From 55a99518a331e87573fedff41b8456c662994ca4 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Nov 2005 22:29:16 +0000 Subject: [PATCH] * (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 --- RELEASE-NOTES | 2 ++ includes/Skin.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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; -- 2.20.1