Index: ZenModel/DataRoot.py
===================================================================
--- ZenModel/DataRoot.py	(revision 7169)
+++ ZenModel/DataRoot.py	(working copy)
@@ -523,7 +523,10 @@
 
     security.declareProtected(ZEN_COMMON, 'getGeoCache')
     def getGeoCache(self, REQUEST=None):
-        return self.geocache
+        cachestr = self.geocache
+        for char in ('\\r', '\\n'):
+            cachestr = cachestr.replace(char, ' ')
+        return cachestr
 
     def goToStatusPage(self, objid, REQUEST=None):
         """ Find a device or network and redirect 

Index: ZenModel/Location.py
===================================================================
--- ZenModel/Location.py	(revision 7169)
+++ ZenModel/Location.py	(working copy)
@@ -150,6 +150,8 @@
             included in the view due to outside linking.
         """
         data = []
+        # Short-circuit the method for now
+        return data
         children = self.children()
         olddata = self.getChildGeomapData()
         for child in children:
