$GLOBALS[]
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-07-06 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* charset_conversion.lib.php3: $strCantUseRecodeIconv has to be accessed via
|
||||
the $GLOBALS[] array.
|
||||
|
||||
2002-07-06 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* tbl_properties_structure.php3: undefined variable
|
||||
* pdf_pages.php3: bug 574637 undefined index
|
||||
|
@@ -87,7 +87,7 @@ if (!defined('PMA_CHARSET_CONVERSION_LIB_INCLUDED')){
|
||||
} else if (@function_exists('recode_string')) {
|
||||
return recode_string($convcharset . '..' . $charset, $what);
|
||||
} else {
|
||||
echo $strCantUseRecodeIconv;
|
||||
echo $GLOBALS['strCantUseRecodeIconv'];
|
||||
return $what;
|
||||
}
|
||||
}
|
||||
@@ -142,7 +142,7 @@ if (!defined('PMA_CHARSET_CONVERSION_LIB_INCLUDED')){
|
||||
} else if (@function_exists('recode_string')) {
|
||||
return recode_string($charset . '..' . $convcharset, $what);
|
||||
} else {
|
||||
echo $strCantUseRecodeIconv;
|
||||
echo $GLOBALS['strCantUseRecodeIconv'];
|
||||
return $what;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user