Skip to content

Commit

Permalink
Merge pull request #741 from Tithugues/fix-convertString
Browse files Browse the repository at this point in the history
Fix PMA_convertString which use a wrong variable.
  • Loading branch information
nijel committed Nov 6, 2013
2 parents 2f3e1ea + c1194cc commit e604155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/charset_conversion.lib.php
Expand Up @@ -104,7 +104,7 @@ function PMA_convertString($src_charset, $dest_charset, $what)
);
case PMA_CHARSET_MB:
return mb_convert_encoding(
$message, $dest_charset, $src_charset
$what, $dest_charset, $src_charset
);
default:
return $what;
Expand Down

0 comments on commit e604155

Please sign in to comment.