From 4075ca7cf5890346877625c5a9d711c6fb0fe02f Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Thu, 4 Mar 2010 11:04:26 -0500 Subject: [PATCH] The Null geocoder object is in map.js, not it's own file. Fixes Bug: #8898 --- horde/js/hordemap/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/js/hordemap/map.js b/horde/js/hordemap/map.js index 0dec8915e..db760a3b2 100644 --- a/horde/js/hordemap/map.js +++ b/horde/js/hordemap/map.js @@ -40,7 +40,7 @@ HordeMap = { } this._addScript(path + this._opts.driver.toLowerCase() + '.js'); - if (this._opts.geocoder) { + if (this._opts.geocoder && this._opts.geocoder != 'Null') { this._addScript(this._getProviderUrl(this._opts.geocoder)); this._addScript(path + this._opts.geocoder.toLowerCase() + '.js'); } -- 2.11.0