From 141f6e5588afefd16a560ef90dd44034235844d9 Mon Sep 17 00:00:00 2001 From: Aleksey Date: Wed, 25 May 2016 16:12:55 +0300 Subject: [PATCH] [1.8.x] Added missing quotes in openlayers.html template. Backport of a247c1d78978e358543e306edb94f03bd9bf9413 from master --- django/contrib/gis/templates/gis/openlayers.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/contrib/gis/templates/gis/openlayers.html b/django/contrib/gis/templates/gis/openlayers.html index 0356a9dd77..3c2d607be1 100644 --- a/django/contrib/gis/templates/gis/openlayers.html +++ b/django/contrib/gis/templates/gis/openlayers.html @@ -5,11 +5,11 @@ #{{ id }}_div_map { position: relative; vertical-align: top; float: {{ LANGUAGE_BIDI|yesno:"right,left" }}; } {% if not display_raw %}#{{ id }} { display: none; }{% endif %} .olControlEditingToolbar .olControlModifyFeatureItemActive { - background-image: url("{% static "admin/img/gis/move_vertex_on.png" %}); + background-image: url("{% static "admin/img/gis/move_vertex_on.png" %}"); background-repeat: no-repeat; } .olControlEditingToolbar .olControlModifyFeatureItemInactive { - background-image: url("{% static "admin/img/gis/move_vertex_off.png" %}); + background-image: url("{% static "admin/img/gis/move_vertex_off.png" %}"); background-repeat: no-repeat; }{% endblock %}