From 08400b2222d0060fd052920a4d2e98c63b3c1deb Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 21 Sep 2004 13:33:11 +0000 Subject: [PATCH] typo --- ChangeLog | 5 ++++- libraries/dbi/mysql.dbi.lib.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b92b06e50..b310233b8 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-09-21 Marc Delisle + * libraries/dbi/mysql.dbi.lib.php: typo, thanks to Matthias Pigulla + 2004-09-21 Alexander M. Turek * db_details.php, read_dump.php, tbl_query_box.php: Allow import of non-UTF-8 SQL dumps. Thanks to Marc for the initial patch. @@ -17,7 +20,7 @@ $Source$ * read_dump.php, libraries/read_dump.lib.php: bug #1030644, error importing when last table exported was empty * libraries/dbi/mysql.dbi.lib.php: tell the client library to use - CLIENT_LOCAL_FILES (flag 128) + CLIENT_LOCAL_FILES (flag 128), thanks to Matthias Pigulla 2004-09-20 Michal Čihař * Documentation.html: Add info about theme generations. diff --git a/libraries/dbi/mysql.dbi.lib.php b/libraries/dbi/mysql.dbi.lib.php index c5eb35cb5..ec06fea1a 100644 --- a/libraries/dbi/mysql.dbi.lib.php +++ b/libraries/dbi/mysql.dbi.lib.php @@ -55,7 +55,7 @@ function PMA_DBI_connect($user, $password) { $client_flags |= 128; } - if (empty($client_clags)) { + if (empty($client_flags)) { $connect_func = 'mysql_' . ($cfg['PersistentConnections'] ? 'p' : '') . 'connect'; $link = @$connect_func($cfg['Server']['host'] . $server_port . $server_socket, $user, $password); } else {