From 3b1a29b805bb418db96514fa0fc906c6bb2a2e8f Mon Sep 17 00:00:00 2001 From: rWatcher Date: Tue, 27 Nov 2012 19:18:57 -0500 Subject: [PATCH] Bugfix. --- 3.0/modules/exif_gps/controllers/admin_exif_gps.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3.0/modules/exif_gps/controllers/admin_exif_gps.php b/3.0/modules/exif_gps/controllers/admin_exif_gps.php index fc563975..1115ca10 100644 --- a/3.0/modules/exif_gps/controllers/admin_exif_gps.php +++ b/3.0/modules/exif_gps/controllers/admin_exif_gps.php @@ -76,11 +76,11 @@ class Admin_EXIF_GPS_Controller extends Admin_Controller { ->label(t("Maximum Auto-Zoom Level:")) ->value(module::get_var("exif_gps", "googlemap_max_autozoom")); $gps_global_group->checkbox("toolbar_map_album")->label(t("Show \"Map this album\" icon?")) - ->checked(module::get_var("exif_gps", "toolbar_map_album", false)); + ->checked(module::get_var("exif_gps", "toolbar_map_album", false)); $gps_global_group->checkbox("toolbar_map_user")->label(t("Show \"Map this user\" icon?")) - ->checked(module::get_var("exif_gps", "toolbar_map_user", false)); + ->checked(module::get_var("exif_gps", "toolbar_map_user", false)); $gps_global_group->checkbox("restrict_maps")->label(t("Restrict maps to registered users?")) - ->checked(module::get_var("exif_gps", "restrict_maps", false)); + ->checked(module::get_var("exif_gps", "restrict_maps", false)); // Create a group for marker cluster settings $gps_markercluster = $form->group("markercluster")