Index: trunk/phase3/includes/Title.php |
— | — | @@ -2197,6 +2197,9 @@ |
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 ); |
2201 | 2204 | |
2202 | 2205 | if ( '' == $dbkey ) { |
2203 | 2206 | return false; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -221,6 +221,7 @@ |
222 | 222 | * (bug 17621) Special:WantedFiles has no link to Special:Whatlinkshere |
223 | 223 | * (bug 17460) Client ecoding is now correctly set for PostgreSQL |
224 | 224 | * (bug 17648) Prevent floats from intruding into edit area in previews if no toolbar present |
| 225 | +* (bug 16899) DISPLAYTITLE should allow Arabic and Persian harakats |
225 | 226 | |
226 | 227 | == API changes in 1.15 == |
227 | 228 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |