From 96c810973238fdfbbd64c912fde60def89d9acbe Mon Sep 17 00:00:00 2001 From: jfederico Date: Thu, 17 Nov 2016 16:39:03 -0500 Subject: [PATCH] bbb-web: Fix bug that was breaking getRecordings in test-install --- bigbluebutton-web/web-app/WEB-INF/freemarker/get-recordings.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-web/web-app/WEB-INF/freemarker/get-recordings.ftl b/bigbluebutton-web/web-app/WEB-INF/freemarker/get-recordings.ftl index 6bef7e87f8..4433d9b99f 100644 --- a/bigbluebutton-web/web-app/WEB-INF/freemarker/get-recordings.ftl +++ b/bigbluebutton-web/web-app/WEB-INF/freemarker/get-recordings.ftl @@ -39,7 +39,7 @@ <#if properties[property]["image"]?? && properties[property]["image"]?is_hash> <#assign image = properties[property]["image"]> width="${image["attributes"]["width"]}" <#if image["attributes"]?? && image["attributes"]["height"]??>height="${image["attributes"]["height"]}" <#if image["attributes"]?? && image["attributes"]["alt"]??>alt="<#escape x as x?xml>${image["attributes"]["alt"]}">${image["text"]} - <#elseif properties[property]["image"]?is_enumerable> + <#elseif properties[property]["image"]?? && properties[property]["image"]?is_enumerable> <#list properties[property]["image"] as image> width="${image["attributes"]["width"]}" <#if image["attributes"]?? && image["attributes"]["height"]??>height="${image["attributes"]["height"]}" <#if image["attributes"]?? && image["attributes"]["alt"]??>alt="<#escape x as x?xml>${image["attributes"]["alt"]}">${image["text"]}