From: Jakub Vrana Date: Tue, 14 Aug 2012 16:12:43 +0000 (-0700) Subject: Indicate NULL values in XML export (thanks to Karel Seidl) X-Git-Tag: v3.6.0~52 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=7674576dcb538cd61ce396a90f78144ad8c914cf;p=adminer.git Indicate NULL values in XML export (thanks to Karel Seidl) --- diff --git a/plugins/dump-xml.php b/plugins/dump-xml.php index 46652a38..56ef9401 100644 --- a/plugins/dump-xml.php +++ b/plugins/dump-xml.php @@ -37,7 +37,7 @@ class AdminerDumpXml { while ($row = $result->fetch_assoc()) { echo "\t\n"; foreach ($row as $key => $val) { - echo "\t\t" . h($val) . "\n"; + echo "\t\t" . h($val) . "\n"; } echo "\t
\n"; }