You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2021/09/28 13:26:35 UTC

[sling-org-apache-sling-app-cms] branch master updated: SLING-10646 - fixing trailing bracket

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git


The following commit(s) were added to refs/heads/master by this push:
     new 5bbff27  SLING-10646 - fixing trailing bracket
5bbff27 is described below

commit 5bbff2757d5f3b3b04c05525cda666bd634d16df
Author: Dan Klco <kl...@adobe.com>
AuthorDate: Tue Sep 28 09:26:01 2021 -0400

    SLING-10646 - fixing trailing bracket
---
 .../jcr_root/apps/reference/components/general/iframe/iframe.jsp        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/reference/src/main/resources/jcr_root/apps/reference/components/general/iframe/iframe.jsp b/reference/src/main/resources/jcr_root/apps/reference/components/general/iframe/iframe.jsp
index 23a8497..f9baf9e 100644
--- a/reference/src/main/resources/jcr_root/apps/reference/components/general/iframe/iframe.jsp
+++ b/reference/src/main/resources/jcr_root/apps/reference/components/general/iframe/iframe.jsp
@@ -19,7 +19,7 @@
 <%@include file="/libs/sling-cms/global.jsp"%>
 <c:if test="${not empty properties.src}">
     <sling:adaptTo adaptable="${slingRequest.requestPathInfo.suffixResource}" adaptTo="org.apache.sling.cms.ComponentConfiguration" var="cmpCfg" />
-    <div class="${sling:encode(properties.wrapperClass,'HTML_ATTR')}}">
+    <div class="${sling:encode(properties.wrapperClass,'HTML_ATTR')}">
         <iframe src="${sling:encode(properties.src,'HTML_ATTR')}" class="${sling:encode(cmpCfg.properties.iframeClass,'HTML_ATTR')}" ${properties.allowFullscreen}></iframe>
     </div>
 </c:if>
\ No newline at end of file