diff options
| author | fisharebest <fisharebest@gmail.com> | 2012-03-28 13:33:58 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2012-03-28 13:33:58 +0000 |
| commit | 9d1b6c193ed79b6f2252bc7d28a831b4c377437f (patch) | |
| tree | da6153872203215e55727108b074c35f8c72344d /modules_v3/googlemap/places_edit.php | |
| parent | 67e8d3e0ebb6cdb5c161081fbb36fc9f9eb0bd17 (diff) | |
| download | webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.tar.gz webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.tar.bz2 webtrees-9d1b6c193ed79b6f2252bc7d28a831b4c377437f.zip | |
Functions should return HTML, rather than output it
Diffstat (limited to 'modules_v3/googlemap/places_edit.php')
| -rw-r--r-- | modules_v3/googlemap/places_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules_v3/googlemap/places_edit.php b/modules_v3/googlemap/places_edit.php index 839f0eec4e..b9e4923133 100644 --- a/modules_v3/googlemap/places_edit.php +++ b/modules_v3/googlemap/places_edit.php @@ -276,7 +276,7 @@ $api='v3'; <td class="descriptionbox"><?php echo WT_Gedcom_Tag::getLabel('PLAC'); ?></td> <td class="optionbox"><input type="text" id="new_pl_name" name="NEW_PLACE_NAME" value="<?php echo htmlspecialchars($place_name); ?>" size="25" class="address_input"> <div id="INDI_PLAC_pop" style="display: inline;"> - <?php print_specialchar_link("NEW_PLACE_NAME", false); ?></div></td><td class="optionbox"> + <?php echo print_specialchar_link('NEW_PLACE_NAME'); ?></div></td><td class="optionbox"> <label for="new_pl_name"><a href="#" onclick="showLocation_all(document.getElementById('new_pl_name').value); return false"> <?php echo WT_I18N::translate('Search globally'); ?></a></label> | <label for="new_pl_name"><a href="#" onclick="showLocation_level(document.getElementById('new_pl_name').value); return false"> <?php echo WT_I18N::translate('Search locally'); ?></a></label> |
