The bug is that DOMDocument->loadHtml will remove tages like </b> in script.
----------------------------------------------------------------------------
Key: SHINDIG-1103
URL: https://issues.apache.org/jira/browse/SHINDIG-1103
Project: Shindig
Issue Type: Bug
Components: PHP
Affects Versions: trunk
Reporter: lipeng
Fix For: trunk
Fixed shindig/php/test/index.php, We can request
"http://shindig/test/index.php?test=GadgetRewriterTest" to get
GadgetRewriterTest's result.
Added shindig/php/test/gadgets/GadgetRewriterTest.php, To test when activate
rewriter by rewrite_by_default=true, the rewrite code should change content
within the content tag in application xml.
<code>
<Content type="html" view="default">
<script>var test='<b>BIG WORDS</b>'</script>
<h1>Hello, world!</h1>
</Content>
</code>
be changed to
<code>
<script>var test='<b>BIG WORDS'</script>
<h1>Hello, world!</h1>
</code>
The bug is that DOMDocument->loadHtml will remove tages like </b> in script.
Every loadHtml calling has that problem. Do you have any solution for this?
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.