This commit is contained in:
Alexander M. Turek
2002-11-19 14:09:39 +00:00
parent 3aef4943d7
commit e6396b014a
26 changed files with 96 additions and 96 deletions

View File

@@ -113,13 +113,13 @@ if (!empty($submit_mult) && !empty($what)) {
<?php
echo "\n";
if (strpos(' ' . $action, 'db_details') == 1) {
echo ' <input type="hidden" name="db" value="' . $db . '" />' . "\n";
echo ' <input type="hidden" name="db" value="' . htmlspecialchars($db) . '" />' . "\n";
} else if (strpos(' ' . $action, 'tbl_properties') == 1) {
echo ' <input type="hidden" name="db" value="' . $db . '" />' . "\n";
echo ' <input type="hidden" name="table" value="' . $table . '" />' . "\n";
echo ' <input type="hidden" name="db" value="' . htmlspecialchars($db) . '" />' . "\n";
echo ' <input type="hidden" name="table" value="' . htmlspecialchars($table) . '" />' . "\n";
}
for ($i = 0; $i < $selected_cnt; $i++) {
echo ' <input type="hidden" name="selected[]" value="' . $selected[$i] . '" />' . "\n";
echo ' <input type="hidden" name="selected[]" value="' . htmlspecialchars($selected[$i]) . '" />' . "\n";
}
?>
<input type="hidden" name="query_type" value="<?php echo $what; ?>" />