wrong function
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-07-10 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/charset_conversion.lib.php3: wrong function called,
|
||||
thanks to Michal Cihar
|
||||
|
||||
2002-07-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries/common.lib.php3: fix from Lo<4C>c for bug 579017
|
||||
|
||||
|
@@ -83,7 +83,7 @@ if (!defined('PMA_CHARSET_CONVERSION_LIB_INCLUDED')){
|
||||
//Debug: echo 'PMA_convert_display_charset: ' . $what . '->' . iconv($convcharset, $charset, $what) . "\n<br />";
|
||||
return iconv($convcharset, $charset, $what);
|
||||
} else if (@function_exists('libiconv')) {
|
||||
return iconv($convcharset, $charset, $what);
|
||||
return libiconv($convcharset, $charset, $what);
|
||||
} else if (@function_exists('recode_string')) {
|
||||
return recode_string($convcharset . '..' . $charset, $what);
|
||||
} else {
|
||||
@@ -138,7 +138,7 @@ if (!defined('PMA_CHARSET_CONVERSION_LIB_INCLUDED')){
|
||||
//Debug: echo 'PMA_convert_charset: ' . $what . '->' . iconv($charset, $convcharset, $what) . "\n<br />";
|
||||
return iconv($charset, $convcharset, $what);
|
||||
} else if (@function_exists('libiconv')) {
|
||||
return iconv($charset, $convcharset, $what);
|
||||
return libiconv($charset, $convcharset, $what);
|
||||
} else if (@function_exists('recode_string')) {
|
||||
return recode_string($charset . '..' . $convcharset, $what);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user