@@ -1965,7 +1965,7 @@ discard block |
||
| 1965 | 1965 | // decode unicode escape sequences |
| 1966 | 1966 | $buf = preg_replace_callback( |
| 1967 | 1967 | '/\\\\u([0-9a-f]{4})/i', |
| 1968 | - function ($match) { |
|
| 1968 | + function($match) { |
|
| 1969 | 1969 | return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE'); |
| 1970 | 1970 | }, |
| 1971 | 1971 | $buf |
@@ -1974,7 +1974,7 @@ discard block |
||
| 1974 | 1974 | // decode UTF-8 codepoints |
| 1975 | 1975 | $buf = preg_replace_callback( |
| 1976 | 1976 | '/&#\d{2,4};/', |
| 1977 | - function ($match) { |
|
| 1977 | + function($match) { |
|
| 1978 | 1978 | return mb_convert_encoding($match[0], 'UTF-8', 'HTML-ENTITIES'); |
| 1979 | 1979 | }, |
| 1980 | 1980 | $buf |