Remove possible double charset conversion.
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-03-09 Michal Cihar <backtowork@cihar.com>
|
||||||
|
* libraries/dbi/mysql.dbi.lib.php: Remove possible double charset
|
||||||
|
conversion.
|
||||||
|
|
||||||
2004-03-05 Marc Delisle <lem9@users.sourceforge.net>
|
2004-03-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/sqlparser.lib.php: bug 909752, floating point digit
|
* libraries/sqlparser.lib.php: bug 909752, floating point digit
|
||||||
* libraries/sqlparser.lib.php: bug 906551, GRANT...TO
|
* libraries/sqlparser.lib.php: bug 906551, GRANT...TO
|
||||||
|
@@ -119,7 +119,7 @@ function PMA_DBI_try_query($query, $link = NULL, $options = 0) {
|
|||||||
if (PMA_MYSQL_INT_VERSION < 40100) {
|
if (PMA_MYSQL_INT_VERSION < 40100) {
|
||||||
$query = PMA_convert_charset($query);
|
$query = PMA_convert_charset($query);
|
||||||
}
|
}
|
||||||
return mysql_query(PMA_convert_charset($query), $link);
|
return mysql_query($query, $link);
|
||||||
}
|
}
|
||||||
|
|
||||||
// The following function is meant for internal use only.
|
// The following function is meant for internal use only.
|
||||||
|
Reference in New Issue
Block a user