From 01c7cfe6a34e0d4d065879c87d657253d2a3fbea Mon Sep 17 00:00:00 2001 From: Gavin Cornwell Date: Fri, 4 Nov 2011 15:30:59 +0000 Subject: [PATCH] Fixed ALF-10157: Web Form Details page for the "Selected Web Content Forms": script error appears on help button click: container.jsp (line 382) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31743 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/web/jsp/wcm/output-path-pattern-help.jsp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/web/jsp/wcm/output-path-pattern-help.jsp b/source/web/jsp/wcm/output-path-pattern-help.jsp index b2a1d0786e..7eca2eeae6 100644 --- a/source/web/jsp/wcm/output-path-pattern-help.jsp +++ b/source/web/jsp/wcm/output-path-pattern-help.jsp @@ -9,6 +9,10 @@ xmlns:f="http://java.sun.com/jsf/core"> function toggleOutputPathPatternHelp() { var d = document.getElementById('wizard:wizard-body:mainPanel'); + if (d == null) + { + d = document.getElementById('dialog:dialog-body:mainPanel'); + } d.style.display = d.style.display == 'block' ? 'none' : 'block'; }