From 62aab91f13989257283b58cbaab7179cabbe3766 Mon Sep 17 00:00:00 2001 From: aheadley Date: Wed, 2 Feb 2011 10:59:27 -0500 Subject: [PATCH] fixed typo --- web_assets/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_assets/functions.js b/web_assets/functions.js index 478b04f..9b42fda 100644 --- a/web_assets/functions.js +++ b/web_assets/functions.js @@ -404,7 +404,7 @@ function getTileUrlGenerator(path, path_base) { var d = new Date(); url += '?c=' + Math.floor(d.getTime() / (1000 * 60 * config.cacheMinutes)); } - return(path_base + url); + return(url_base + url); } }