From 2ae5e5f87d0516957839b22a2802b8be406b2c0d Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Fri, 18 Nov 2005 13:24:43 +0000 Subject: [PATCH] missing ; after " --- ChangeLog | 1 + header.inc.php | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 181aa2003..3351ba736 100755 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,7 @@ $Source$ - common.lib.php should REALLY REALLY and ALWAYS be the first include - no other calls to grab_gloabls.lib.php * fixed minimum_common for css files + * header.inc.php: missing ; after " 2005-11-17 Marc Delisle * Documentation.html: patch #1353283, thanks to Isaac Bennetch diff --git a/header.inc.php b/header.inc.php index 208809997..0732b6daf 100644 --- a/header.inc.php +++ b/header.inc.php @@ -207,7 +207,7 @@ if (empty($GLOBALS['is_header_sent'])) { htmlspecialchars($GLOBALS['table']), (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] ? $GLOBALS['strView'] : $GLOBALS['strTable']), (isset($GLOBALS['tbl_is_view']) && $GLOBALS['tbl_is_view'] ? 'b_views' : 's_tbl') . '.png' ); - + /** * Displays table comment * @uses $show_comment from tbl_properties_table_info.php @@ -233,7 +233,7 @@ if (empty($GLOBALS['is_header_sent'])) { // in db_details_db_info.php only once if ($cfgRelation['commwork']) { $comment = PMA_getComments( $GLOBALS['db'] ); - + /** * Displays table comment */ @@ -241,7 +241,7 @@ if (empty($GLOBALS['is_header_sent'])) { echo '"' .htmlspecialchars(implode(' ', $comment)) - .'"' . "\n"; + .'"' . "\n"; } // end if } }