Index: trunk/extensions/Transliterator/Transliterator_body.php |
— | — | @@ -276,13 +276,13 @@ |
277 | 277 | $from = self::forTransliteration( $from, $flags | self::IGNORE_ENDINGS ); |
278 | 278 | |
279 | 279 | if ( !$noprefix ) { |
280 | | - $from = preg_replace( '/^[\^][' . self::LETTER_END . '][' . self::WORD_START . ']/u', '', $from, 1, &$count ); |
| 280 | + $from = preg_replace( '/^[\^][' . self::LETTER_END . '][' . self::WORD_START . ']/u', '', $from, 1, $count ); |
281 | 281 | if ( $count ) { |
282 | 282 | $prefix = self::WORD_START; |
283 | 283 | } |
284 | 284 | } |
285 | 285 | if ( !$nosuffix ) { |
286 | | - $from = preg_replace( '/[' . self::WORD_END . '][$][' . self::LETTER_END . ']$/u', '', $from, 1, &$count ); |
| 286 | + $from = preg_replace( '/[' . self::WORD_END . '][$][' . self::LETTER_END . ']$/u', '', $from, 1, $count ); |
287 | 287 | if ( $count ) { |
288 | 288 | $suffix = self::WORD_END; |
289 | 289 | } |