From 52b02ca970d0a9cff367276ca4e1efb44f7154b6 Mon Sep 17 00:00:00 2001 From: Bob den Otter Date: Sun, 14 Apr 2019 15:20:10 +0200 Subject: [PATCH] Fix last mention of `area` in templates. --- templates/editcontent/media_edit.html.twig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/editcontent/media_edit.html.twig b/templates/editcontent/media_edit.html.twig index aed98162..fcd0c9a7 100644 --- a/templates/editcontent/media_edit.html.twig +++ b/templates/editcontent/media_edit.html.twig @@ -8,10 +8,10 @@ {% block main %} -

{{ 'caption.filename'|trans }} » {{ media.area }}://{% if media.path %}{{ media.path }}/{% endif %}{{ media.filename }}

+

{{ 'caption.filename'|trans }} » {{ media.location }}://{% if media.path %}{{ media.path }}/{% endif %}{{ media.filename }}

- {% set thumbnail = thumbnail(image = media.filename, width = 900, height = 500, location = media.area, path = media.path) %} + {% set thumbnail = thumbnail(image = media.filename, width = 900, height = 500, location = media.location, path = media.path) %}
@@ -127,7 +127,7 @@ {{ parent() }} - {% set thumbnail = thumbnail(image = media.filename, width = 900, height = 500, location = media.area, path = media.path) %} + {% set thumbnail = thumbnail(image = media.filename, width = 900, height = 500, location = media.location, path = media.path) %}