missing ; after &quot

This commit is contained in:
Sebastian Mendel
2005-11-18 13:24:43 +00:00
parent 1f3fe5fa08
commit 2ae5e5f87d
2 changed files with 4 additions and 3 deletions

View File

@@ -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 &quot
2005-11-17 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: patch #1353283, thanks to Isaac Bennetch

View File

@@ -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 '<span class="table_comment"'
.' id="span_table_comment">&quot;'
.htmlspecialchars(implode(' ', $comment))
.'&quot</span>' . "\n";
.'&quot;</span>' . "\n";
} // end if
}
}