2010-07-20 Miguel de Dios <miguel.dedios@artica.es>

* godmode/setup/gis_step_2.php: fixed when the spanish translation have a
	problematic characters.
	Fixes: #3029149



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3035 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-07-20 10:22:26 +00:00
parent c156fe55b8
commit 8ee7086bbd
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2010-07-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/setup/gis_step_2.php: fixed when the spanish translation have a
problematic characters.
Fixes: #3029149
2010-07-19 Raúl Mateos <raulofpandora@gmail.com>
* extras/pandoradb_migrate_v3.1_to_v3.2.sql: Updated year.

View File

@ -206,7 +206,7 @@ if ($mapConnectionData != null) {
// Open Street Map Connection
$optionsConnectionOSMTable = '<table class="databox" border="0" cellpadding="4" cellspacing="4" width="50%">' .
'<tr class="row_0">' .
'<td>' . __("Tile Server URL") . ':</td>' .
'<td>' . htmlentities(__("Tile Server URL"), ENT_QUOTES) . ':</td>' .
'<td><input id="type" type="hidden" name="type" value="OSM" />' . print_input_text ('url', $mapConnectionDataUrl, '', 45, 90, true) . '</td>' .
'</tr>' .
'</table>';
@ -466,6 +466,7 @@ function loadGoogleMap() {
*/
function selMapConnectionType() {
$('#form_map_connection_type').fadeOut("normal");
switch ($('#sel_type :selected').val()) {
case 'OSM':
$('#form_map_connection_type').html('<?php echo $optionsConnectionOSMTable; ?>').hide();