HTML entities fix

This commit is contained in:
Michal Čihař
2003-03-25 11:21:10 +00:00
parent 03a8fe7512
commit 02616368ed
2 changed files with 4 additions and 3 deletions

View File

@@ -7,7 +7,8 @@ $Source$
2003-03-25 Michal Cihar <nijel@users.sourceforge.net>
* tbl_query_box.php3, tbl_properties_operations.php3,
libraries/common.lib.php3, tbl_query_box.php3: More HTML entities fixes.
libraries/common.lib.php3, tbl_query_box.php3, querywindow.php3: More
HTML entities fixes.
* read_dump.php3: Fixed detection of $goto.
* header.inc.php3: Neated URL generating.

View File

@@ -215,8 +215,8 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
echo implode("\n", $input_query_history);
}
?>
<input type="hidden" name="db" value="<?php echo (isset($db) && $db != '' ? $db : ''); ?>" />
<input type="hidden" name="table" value="<?php echo (isset($table) && $table != '' ? $table : ''); ?>" />
<input type="hidden" name="db" value="<?php echo (empty($db) ? '' : htmlspecialchars($db)); ?>" />
<input type="hidden" name="table" value="<?php echo (empty($table) ? '' : htmlspecialchars($table)); ?>" />
<input type="hidden" name="query_history_latest" value="" />
<input type="hidden" name="query_history_latest_db" value="" />