From 83684ef794c534d9caaf29f7ab4239492fcad18a Mon Sep 17 00:00:00 2001 From: Ben Daley Date: Mon, 23 Mar 2015 17:19:42 +1100 Subject: [PATCH] Fix bad reference to Path --- modules/PathUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/PathUtils.js b/modules/PathUtils.js index 532d3442ea..996cf0f49e 100644 --- a/modules/PathUtils.js +++ b/modules/PathUtils.js @@ -151,7 +151,7 @@ var PathUtils = { if (queryString) return PathUtils.withoutQuery(path) + '?' + queryString; - return Path.withoutQuery(path); + return PathUtils.withoutQuery(path); } };