From 162e6618d1f6d2715b24f2bc2de13487ee82fa7f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 13 Sep 2005 01:57:28 +0000 Subject: [PATCH] * (bug 1512) Disable x-code interp on Esperanto URLs for now, it does more harm than good under current system by breaking incoming URLs with "ux". (Editing is not affected, just URLs.) --- RELEASE-NOTES | 3 +++ languages/LanguageEo.php | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index dfbf3e02bc..ef4d997725 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -101,6 +101,9 @@ fully support the editing toolbar, but was found to be too confusing. * Use the real file link instead of the default-size rasterized version for large SVG images on image description page * Include the file name/type/size line for non-resized images +* (bug 1512) Disable x-code interp on Esperanto URLs for now, it does more + harm than good under current system by breaking incoming URLs with "ux". + (Editing is not affected, just URLs.) === Caveats === diff --git a/languages/LanguageEo.php b/languages/LanguageEo.php index ea66bb21fe..8f7b31fa8e 100644 --- a/languages/LanguageEo.php +++ b/languages/LanguageEo.php @@ -1000,8 +1000,8 @@ class LanguageEo extends LanguageUtf8 { return $s; } - if( preg_match( '/[cghjsu]x/i', $s ) ) - return $this->iconv( 'x', 'utf-8', $s ); + //if( preg_match( '/[cghjsu]x/i', $s ) ) + // return $this->iconv( 'x', 'utf-8', $s ); return $s; } -- 2.20.1