From ff5579f07912ef1053793611b1c6c24abf55222b Mon Sep 17 00:00:00 2001
From: Brandon Bergren <bdragon@rtk0.net>
Date: Tue, 15 Jul 2008 18:11:51 +0000
Subject: [PATCH] Code style

---
 gmap_location.module | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gmap_location.module b/gmap_location.module
index 14c90ab..d8d49e4 100644
--- a/gmap_location.module
+++ b/gmap_location.module
@@ -749,8 +749,8 @@ function gmap_location_block_view($nid) {
       $map['longitude'] = $markers[0]['longitude'];
       $map['markers'] = $markers;
       // @@@
-      $map['behavior']['autozoom'] = true;
-      $map['behavior']['notype'] = true;
+      $map['behavior']['autozoom'] = TRUE;
+      $map['behavior']['notype'] = TRUE;
       $map['controltype'] = 'None';
       $block['subject'] = t('Location');
       $block['content'] = theme('gmap', array('#settings' => $map));
@@ -860,7 +860,7 @@ function gmap_location_user($op, &$edit, &$user, $category = NULL) {
         if ($u) {
           $user->gmap_location_longitude = $u->longitude;
           $user->gmap_location_latitude = $u->latitude;
-          $user->gmap_location_set = true;
+          $user->gmap_location_set = TRUE;
         }
         break;
       case 'categories':
@@ -904,7 +904,7 @@ function gmap_location_user($op, &$edit, &$user, $category = NULL) {
             '#title' => t('Coordinates'),
             '#weight' => 5,
             '#collapsible' => $type!='user',
-            '#collapsed' => false,
+            '#collapsed' => FALSE,
           );
 
           // Reserve spot for map.
-- 
GitLab