
The branch, master has been updated via eb37c0026025ae73776a23cd78c6d86eec1b2311 (commit) from debeee3ab918643d66caa196b29a1e12f9d80009 (commit) - Log ----------------------------------------------------------------- commit eb37c0026025ae73776a23cd78c6d86eec1b2311 Author: Michal Čihař <michal@cihar.com> Date: Tue Aug 23 10:50:11 2011 +0200 Avoid two messages for same thing ----------------------------------------------------------------------- Summary of changes: gis_data_editor.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 23ce037..ec8ad77 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -218,7 +218,7 @@ if (isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { echo __("Linestring"); echo($i + 1 . ':'); } else { if ($i == 0) { - echo __("Outer Ring:"); + echo __("Outer Ring") . ':'; } else { echo __("Inner Ring"); echo($i . ':'); } @@ -272,7 +272,7 @@ if (isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { for ($i = 0; $i < $no_of_lines; $i++) { echo('<br/><br/>'); if ($i == 0) { - echo __("Outer Ring:"); + echo __("Outer Ring") . ':'; } else { echo __("Inner Ring"); echo($i . ':'); } @@ -332,4 +332,4 @@ if (isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { */ require './libraries/footer.inc.php'; -?> \ No newline at end of file +?> hooks/post-receive -- phpMyAdmin