Skip to content

Commit

Permalink
Merge pull request #3 from bolt/hotfix/extra-safeguards-sub_fields
Browse files Browse the repository at this point in the history
Some extra safeguards against exceptions in "strict" mode.
  • Loading branch information
GwendolenLynch authored Jul 24, 2017
2 parents 6ca9360 + e92cfce commit ee46f5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions base-2016/partials/_sub_field_blocks.twig
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% endif %}

{# Image fields #}
{% if fieldtype == "image" %}
{% if fieldtype == "image" and value.file|default is not empty %}
{{ popup(value, 1200, 0) }}
{% endif %}

Expand All @@ -58,7 +58,7 @@
{% block extended_fields %}

{# Geolocation field #}
{% if fieldtype == "geolocation" and value.latitude is defined %}
{% if fieldtype == "geolocation" and value.latitude|default is not empty %}
<img src="http://maps.googleapis.com/maps/api/staticmap?center={{ value.latitude }},{{ value.longitude }}&amp;zoom=14&amp;size=617x300&amp;sensor=false&amp;markers={{ value.latitude }},{{ value.longitude }}">
{% endif %}

Expand Down
4 changes: 2 additions & 2 deletions skeleton/partials/_sub_field_blocks.twig
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% endif %}

{# Image fields #}
{% if fieldtype == "image" and value['file'] is not empty %}
{% if fieldtype == "image" and value.file|default is not empty %}
{{ value|showimage('684') }}
{% endif %}

Expand All @@ -58,7 +58,7 @@
{% block extended_fields %}

{# Geolocation field #}
{% if fieldtype == "geolocation" and value.latitude is defined %}
{% if fieldtype == "geolocation" and value.latitude|default is not empty %}
<img src="http://maps.googleapis.com/maps/api/staticmap?center={{ value.latitude }},{{ value.longitude }}&amp;zoom=14&amp;size=617x300&amp;sensor=false&amp;markers={{ value.latitude }},{{ value.longitude }}">
{% endif %}

Expand Down

0 comments on commit ee46f5d

Please sign in to comment.