]> git.openstreetmap.org Git - rails.git/commitdiff
Don't use comma to separate values in the location cookie, as rails 2.0.2 will
authorTom Hughes <tom@compton.nu>
Thu, 5 Jun 2008 23:27:52 +0000 (23:27 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 5 Jun 2008 23:27:52 +0000 (23:27 +0000)
treat comma (as well as semicolon) as a cookie separate. Also change the name
of the location cookie to avoid problems parsing old ones.

app/views/site/index.rhtml

index e30dad1d026b73dcc7031b0de79fe901da2c6dc1..a79ea10c39f867705bac09a1365f2dec46c7d259 100644 (file)
@@ -58,8 +58,8 @@ by the OpenStreetMap project and its contributors.
 <% lat = h(params['mlat']) %>
 <% zoom =  h(params['zoom'] || '12') %>
 <% layers = h(params['layers']) %>
-<% elsif cookies.key?("location") %>
-<% lon,lat,zoom,layers = cookies["location"].split(",") %>
+<% elsif cookies.key?("_osm_location") %>
+<% lon,lat,zoom,layers = cookies["_osm_location"].split("|") %>
 <% elsif @user and !@user.home_lon.nil? and !@user.home_lat.nil? %> 
 <% lon =  @user.home_lon %>
 <% lat =  @user.home_lat %>
@@ -148,7 +148,7 @@ by the OpenStreetMap project and its contributors.
 
     updatelinks(lonlat.lon, lonlat.lat, zoom, layers);
 
-    document.cookie = "location=" + lonlat.lon + "," + lonlat.lat + "," + zoom + "," + layers;
+    document.cookie = "_osm_location=" + lonlat.lon + "|" + lonlat.lat + "|" + zoom + "|" + layers;
   }
 
   function resizeContent() {