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