From 104257bb2240ca230ca6d21075918124af7b52b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 12 Nov 2003 13:08:38 +0000 Subject: [PATCH] Fixed LaTeX output (patch #840082). --- ChangeLog | 3 +++ libraries/export/latex.php3 | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2e2d6acc5..5aaddc4e2 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-11-12 Michal Cihar + * libraries/export/latex.php3: Fixed LaTeX output (patch #840082). + 2003-11-11 Garvin Hicking * libraries/display_tbl.lib.php3: Added more secure checks for each'ing on arrays built by the query analyzer. (Bug #839630) diff --git a/libraries/export/latex.php3 b/libraries/export/latex.php3 index 4fb4c9cb6..0a82f912d 100644 --- a/libraries/export/latex.php3 +++ b/libraries/export/latex.php3 @@ -283,7 +283,7 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals $buffer .= ' \\caption{'. str_replace('__TABLE__', PMA_texEscape($table), $GLOBALS['latex_structure_continued_caption']) . '} \\\\ ' . $crlf; } - $buffer .= $header . ' \\\\ \\hline \\hline \\endhead \\endfoot'; + $buffer .= $header . ' \\\\ \\hline \\hline \\endhead \\endfoot '; if (!PMA_exportOutputHandler($buffer)) return FALSE;