From d87ea6863ad8d525d9320e6d1d13350f8263cf52 Mon Sep 17 00:00:00 2001
From: Tom Hughes <tom@compton.nu>
Date: Wed, 21 Jul 2010 14:49:09 +0100
Subject: [PATCH] Fix short links to drop the layers param for the default
 layer

---
 public/javascripts/site.js | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/public/javascripts/site.js b/public/javascripts/site.js
index 0a5aae4ad2..0e2c5aeb7d 100644
--- a/public/javascripts/site.js
+++ b/public/javascripts/site.js
@@ -107,10 +107,8 @@ function updatelinks(lon,lat,zoom,layers,minlon,minlat,maxlon,maxlat,objtype,obj
       args[objtype] = objid;
     }
 
-    // This is a hack to omit the default mapnik layer (B000FTF) from
-    // the shortlink. B000FTFT is then the "Object" layer which we get
-    // on /?{node,way,relation}=id
-    if (layers && (layers != "B000FTF") && (layers != "B000FTFT")) {
+    // This is a hack to omit the default mapnik layer from the shortlink.
+    if (layers && layers != "M") {
       args["layers"] = layers;
     }
     else {