From 250de2f602f749334b202835acf4292447835d9f Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Tue, 25 Aug 2009 13:56:05 +0000 Subject: [PATCH] Introducer _binary is not needed git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1008 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- adminer/include/export.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/include/export.inc.php b/adminer/include/export.inc.php index 639b8824..faf907bf 100644 --- a/adminer/include/export.inc.php +++ b/adminer/include/export.inc.php @@ -102,7 +102,7 @@ function dump_data($table, $style, $select = "") { if ($_POST["format"] != "csv" && $style == "TRUNCATE+INSERT") { echo "TRUNCATE " . idf_escape($table) . ";\n"; } - $result = $dbh->query(($select ? $select : "SELECT * FROM " . idf_escape($table))); //! enum and set as numbers, binary as _binary, microtime + $result = $dbh->query(($select ? $select : "SELECT * FROM " . idf_escape($table))); //! enum and set as numbers, microtime if ($result) { $fields = fields($table); $length = 0;