Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -255,7 +255,6 @@ |
256 | 256 | * (bug 17460) Client ecoding is now correctly set for PostgreSQL |
257 | 257 | * (bug 17648) Prevent floats from intruding into edit area in previews if no |
258 | 258 | toolbar present |
259 | | -* (bug 16899) DISPLAYTITLE should allow Arabic and Persian harakats |
260 | 259 | * (bug 17692) Added (list of members) link to 'user' in Special:Listgrouprights |
261 | 260 | * (bug 17707) Show file destination as plain text if &wpForReUpload=1 |
262 | 261 | * (bug 10172) Moved setting of "changed since last visit" flags out of the job |
Index: trunk/phase3/includes/Title.php |
— | — | @@ -2197,9 +2197,6 @@ |
2198 | 2198 | # |
2199 | 2199 | $dbkey = preg_replace( '/[ _]+/', '_', $dbkey ); |
2200 | 2200 | $dbkey = trim( $dbkey, '_' ); |
2201 | | - |
2202 | | - # Clean up Arabic harakats (bug 16899) |
2203 | | - $dbkey = preg_replace( '/[\x{064B}-\x{0652}]/Su', '', $dbkey ); |
2204 | 2201 | |
2205 | 2202 | if ( '' == $dbkey ) { |
2206 | 2203 | return false; |