From: Michael J. Rubinsky Date: Thu, 4 Mar 2010 16:04:26 +0000 (-0500) Subject: The Null geocoder object is in map.js, not it's own file. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4075ca7cf5890346877625c5a9d711c6fb0fe02f;p=horde.git The Null geocoder object is in map.js, not it's own file. Fixes Bug: #8898 --- 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'); }