From d43fd800fb5953f0d601a38ea2814440e48b3367 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 28 Apr 2002 17:38:17 +0000 Subject: [PATCH] =?UTF-8?q?Thx,=20Lo=EF=BF=BDc=20:o)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libraries/build_dump.lib.php3 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/build_dump.lib.php3 b/libraries/build_dump.lib.php3 index 8429af438..36f91b61c 100644 --- a/libraries/build_dump.lib.php3 +++ b/libraries/build_dump.lib.php3 @@ -563,7 +563,6 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){ * @param string the table name * @param string the end of line sequence * @param string the url to go back in case of error - * (doesn't work yet) * * @return string the XML data structure on success * @@ -585,7 +584,7 @@ if (!defined('PMA_BUILD_DUMP_LIB_INCLUDED')){ while ($record = mysql_fetch_array($result, MYSQL_ASSOC)) { $buffer .= ' <' . $table . '>' . $crlf; for ($i = 0; $i < $columns_cnt; $i++) { - // There is no way to dectect a "NULL" value with PHP3 + // There is no way to dectect a "NULL" value with PHP3 if (!function_exists('is_null') || !is_null($record[$column[$i]])) { $buffer .= ' <' . $column . '>' . htmlspecialchars($record[$column]) . '' . $crlf;