From 296c50398d43d07bc8e6ea8229fac6500fb9b286 Mon Sep 17 00:00:00 2001 From: caktux <caktux@257108.no-reply.drupal.org> Date: Wed, 14 Aug 2013 11:41:50 +0300 Subject: [PATCH] Issue #2017565 by caktux | RollWhisTler: Fixed Path Prefixes (i18n) breaks marker path. --- js/icon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/icon.js b/js/icon.js index 70662f9..3fabdd2 100644 --- a/js/icon.js +++ b/js/icon.js @@ -59,7 +59,7 @@ Drupal.gmap.getIcon = function (setname, sequence) { t.iconAnchor = new GPoint(q.anchorX, q.anchorY); t.infoWindowAnchor = new GPoint(q.infoX, q.infoY); */ - p = Drupal.settings.basePath + Drupal.settings.pathPrefix + q.path; + p = Drupal.settings.basePath + q.path; t = new google.maps.MarkerImage(p + q.sequence[i].f, new google.maps.Size(q.sequence[i].w, q.sequence[i].h), null, -- GitLab