Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-08-01 23:02:32 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-08-01 23:02:32 +0400
commitdc823602428de00f987425ccdbbb903044572551 (patch)
tree40a09e94c89ce8a5f7a157e7b962bcf4eb090355 /gis_data_editor.php
parent3611d48325f6e2990a5d29060503237f83d52257 (diff)
Prepares and insert GIS data to the input field on pressing 'enter'
Diffstat (limited to 'gis_data_editor.php')
-rw-r--r--gis_data_editor.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/gis_data_editor.php b/gis_data_editor.php
index c4842b2b9e..417f7fb187 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -83,10 +83,10 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) {
<div id="gis_data_editor">
<h3><?php printf(__('Value for the column "%s"'), htmlspecialchars($_REQUEST['field'])); ?></h3>
-<?php echo('<input type="hidden" name="field" value="' . htmlspecialchars($_REQUEST['field']) . '">');
+<?php echo('<input type="hidden" name="field" value="' . htmlspecialchars($_REQUEST['field']) . '" />');
// The input field to which the final result should be added and corresponding null checkbox
if (isset($_REQUEST['input_name'])) {
- echo('<input type="hidden" name="input_name" value="' . htmlspecialchars($_REQUEST['input_name']) . '">');
+ echo('<input type="hidden" name="input_name" value="' . htmlspecialchars($_REQUEST['input_name']) . '" />');
}
echo PMA_generate_common_hidden_inputs();
?>