Fix typo.

This commit is contained in:
Michal Čihař
2004-08-16 15:14:16 +00:00
parent 1f89127a2a
commit 422bf9d741
2 changed files with 2 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ $Source$
2004-08-16 Michal Čihař <michal@cihar.com>
* read_dump.php: Fix handling of comments -- and # (bug #1009494).
* libraries/relation.lib.php: Fix typo.
2004-08-15 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck)

View File

@@ -651,7 +651,7 @@ function PMA_purgeHistory($username) {
global $cfgRelation, $cfg;
$purge_query = 'SELECT timevalue FROM ' . PMA_backquote($cfgRelation['history']) . ' WHERE ';
if (PMA_MYSQL_INT_VERION >= 40100) {
if (PMA_MYSQL_INT_VERSION >= 40100) {
list($conn_charset) = explode('_', $GLOBALS['collation_connection']);
$purge_query .= 'CONVERT(username USING ' . $conn_charset . ')';
unset($conn_charset);