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:
authorMichal Čihař <mcihar@suse.cz>2013-04-15 17:09:32 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-15 17:09:32 +0400
commitf1299ad66571b94063515ce347e2ee5018b3bbc8 (patch)
tree0b5fc7eb4f3f2aac98ec706867548b36baad86c0 /js/gis_data_editor.js
parentf2c0c17c5fba6154764745ba9f7e72f342b4d031 (diff)
Remove extra ; from code
Diffstat (limited to 'js/gis_data_editor.js')
-rw-r--r--js/gis_data_editor.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/gis_data_editor.js b/js/gis_data_editor.js
index 99dc70d529..753ba39dcb 100644
--- a/js/gis_data_editor.js
+++ b/js/gis_data_editor.js
@@ -346,8 +346,8 @@ AJAX.registerOnload('gis_data_editor.js', function() {
// Add the new polygon
var html = PMA_messages['strPolygon'] + ' ' + (noOfPolygons + 1) + ':<br/>';
- html += '<input type="hidden" name="' + prefix + '[' + noOfPolygons + '][no_of_lines]" value="1"/>';
- + '<br/>' + PMA_messages['strOuterRing'] + ':';
+ html += '<input type="hidden" name="' + prefix + '[' + noOfPolygons + '][no_of_lines]" value="1"/>'
+ + '<br/>' + PMA_messages['strOuterRing'] + ':'
+ '<input type="hidden" name="' + prefix + '[' + noOfPolygons + '][0][no_of_points]" value="4"/>';
for (var i = 0; i < 4; i++) {
html += addDataPoint(i, (prefix + '[' + noOfPolygons + '][0]'));