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ř <michal@cihar.com>2016-06-16 14:17:36 +0300
committerMichal Čihař <michal@cihar.com>2016-06-16 14:17:36 +0300
commita1f69b4c808eeb49d336ff01e6d966200d062a56 (patch)
tree015dd6c32c0b8ea8b1244739f22d890b60901113 /gis_data_editor.php
parent5b05665ff07d5af0dcd1d195711448202d0add7b (diff)
Fix syntax error
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'gis_data_editor.php')
-rw-r--r--gis_data_editor.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/gis_data_editor.php b/gis_data_editor.php
index 1314cac451..cfc3a53ad4 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -334,7 +334,7 @@ for ($a = 0; $a < $geom_count; $a++) {
echo '<br/>';
printf(__('Polygon %d:'), $k + 1);
$no_of_lines = isset($gis_data[$a][$type][$k]['no_of_lines'])
- ? intval($gis_data[$a][$type][$k]['no_of_lines')] : 1;
+ ? intval($gis_data[$a][$type][$k]['no_of_lines']) : 1;
if ($no_of_lines < 1) {
$no_of_lines = 1;
}