diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-05-09 07:39:07 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-05-09 07:39:07 +0000 |
| commit | 411fce210f6b467d9ef1e3c7bf1780c64e19cfd0 (patch) | |
| tree | 729213e447faac78db73095cc69e3e8d7f7c36ab /modules/googlemap/places_edit.php | |
| parent | 0d9a5f560cf08a0d43feb247be7228983484f21a (diff) | |
| download | webtrees-411fce210f6b467d9ef1e3c7bf1780c64e19cfd0.tar.gz webtrees-411fce210f6b467d9ef1e3c7bf1780c64e19cfd0.tar.bz2 webtrees-411fce210f6b467d9ef1e3c7bf1780c64e19cfd0.zip | |
Convert old-style modules into new-style modules (sitemap, batch update, googlemap, jwplayer, lightbox, etc.)
Diffstat (limited to 'modules/googlemap/places_edit.php')
| -rw-r--r-- | modules/googlemap/places_edit.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/googlemap/places_edit.php b/modules/googlemap/places_edit.php index fdea32c687..630ef96342 100644 --- a/modules/googlemap/places_edit.php +++ b/modules/googlemap/places_edit.php @@ -35,9 +35,10 @@ if (!defined('WT_WEBTREES')) { require WT_ROOT.'modules/googlemap/defaultconfig.php'; require WT_ROOT.'includes/functions/functions_edit.php'; +global $TBLPREFIX; +$action=safe_REQUEST($_REQUEST, 'action'); if (isset($_REQUEST['placeid'])) $placeid = $_REQUEST['placeid']; if (isset($_REQUEST['place_name'])) $place_name = $_REQUEST['place_name']; -if (isset($_REQUEST['action'])) $action = $_REQUEST['action']; print_simple_header(i18n::translate('Edit geographic place locations')); |
