Skip to content
Snippets Groups Projects
Commit 677d2785 authored by Dominik Eckelmann's avatar Dominik Eckelmann
Browse files

fixed script blocks CDATA for ie on TPL_METAHEADER_OUTPUT FS#2563

parent 09f791c4
No related branches found
No related tags found
No related merge requests found
......@@ -328,9 +328,9 @@ function html_search(){
//show progressbar
print '<div id="dw__loading">'.NL;
print '<script type="text/javascript"><!--//--><![CDATA[//><!--'.NL;
print '<script type="text/javascript">/*<![CDATA[*/'.NL;
print 'showLoadBar();'.NL;
print '//--><!]]></script>'.NL;
print '/*!]]>*/</script>'.NL;
print '</div>'.NL;
flush();
......@@ -390,9 +390,9 @@ function html_search(){
}
//hide progressbar
print '<script type="text/javascript"><!--//--><![CDATA[//><!--'.NL;
print '<script type="text/javascript">/*<![CDATA[*/'.NL;
print 'hideLoadBar("dw__loading");'.NL;
print '//--><!]]></script>'.NL;
print '/*!]]>*/</script>'.NL;
flush();
}
......@@ -1424,9 +1424,9 @@ function html_edit(){
if ($wr) {
// sets changed to true when previewed
echo '<script type="text/javascript"><!--//--><![CDATA[//><!--'. NL;
echo '<script type="text/javascript">/*<![CDATA[*/'. NL;
echo 'textChanged = ' . ($mod ? 'true' : 'false');
echo '//--><!]]></script>' . NL;
echo '/*!]]>*/</script>' . NL;
} ?>
<div class="editBox">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment