Files
Facilitor/APPL/BES/ModalForm.asp
Jos Groot Lipman 8f5fb67942 FSN#29385 Concrete Reflective XSS uit de pentest
svn path=/Website/branches/v5.4.1/; revision=21386
2014-04-23 17:33:01 +00:00

27 lines
713 B
Plaintext

<%@ language = "JavaScript" %>
<!-- #include file="../Shared/common.inc" -->
<% // Modal form container
var titleString = getQParam("title", L("lcl_bes_article_details")); // Titel
%>
<html>
<head>
<title><%=safe.html(titleString)%></title>
<script>
function closeModal(retval)
{
window.returnValue = retval;
yy = window.returnValue;
document.write(yy); // Als ik dit weghaal is de returnValue altijd false?
window.close();
}
</script>
</head>
<body>
<script>
document.write('<iframe width="100%" height="100%" src=' + window.dialogArguments + '></iframe>');
</script>
</body>
</html>