@@ -347,7 +347,7 @@ discard block |
||
347 | 347 | if ($str !== '') { |
348 | 348 | if ($from !== false && $to === false) { |
349 | 349 | $str = \mb_convert_encoding($str, 'UTF-8', $from); |
350 | - return \iconv('UTF-8', $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE', $str); |
|
350 | + return \iconv('UTF-8', $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE', $str); |
|
351 | 351 | } elseif ($from === false && $to !== false) { |
352 | 352 | $str = \iconv($this->getIconvAlias($fromCharset), 'UTF-8//TRANSLIT//IGNORE', $str); |
353 | 353 | return \mb_convert_encoding($str, $to, 'UTF-8'); |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | } |
357 | 357 | return \iconv( |
358 | 358 | $this->getIconvAlias($fromCharset), |
359 | - $this->getIconvAlias($toCharset) . '//TRANSLIT//IGNORE', |
|
359 | + $this->getIconvAlias($toCharset).'//TRANSLIT//IGNORE', |
|
360 | 360 | $str |
361 | 361 | ); |
362 | 362 | } |