Index: trunk/phase3/languages/Language.php |
— | — | @@ -1564,7 +1564,7 @@ |
1565 | 1565 | $n = $minLength-1; |
1566 | 1566 | $out = preg_replace( |
1567 | 1567 | "/\b(\w{1,$n})\b/", |
1568 | | - "$1U800", |
| 1568 | + "$1u800", |
1569 | 1569 | $out ); |
1570 | 1570 | } |
1571 | 1571 | |
— | — | @@ -1576,7 +1576,7 @@ |
1577 | 1577 | // "example.wikipedia.com" and "192.168.83.1" as well. |
1578 | 1578 | $out = preg_replace( |
1579 | 1579 | "/(\w)\.(\w|\*)/u", |
1580 | | - "$1U82e$2", |
| 1580 | + "$1u82e$2", |
1581 | 1581 | $out ); |
1582 | 1582 | |
1583 | 1583 | wfProfileOut( __METHOD__ ); |
— | — | @@ -1589,7 +1589,7 @@ |
1590 | 1590 | * settings or anything else of the sort. |
1591 | 1591 | */ |
1592 | 1592 | protected function stripForSearchCallback( $matches ) { |
1593 | | - return 'U8' . bin2hex( $matches[1] ); |
| 1593 | + return 'u8' . bin2hex( $matches[1] ); |
1594 | 1594 | } |
1595 | 1595 | |
1596 | 1596 | /** |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -119,6 +119,7 @@ |
120 | 120 | * Categoryfinder utility class no longer fails on invalid input or gives wrong |
121 | 121 | results for category names that include pseudo-namespaces |
122 | 122 | * (bug 17252) Galician numbering format |
| 123 | +* (bug 17146) Fix for UTF-8 and short word search for some possible MySQL configs |
123 | 124 | |
124 | 125 | == API changes in 1.15 == |
125 | 126 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |