From: SourceForge.net <no...@so...> - 2012-10-16 07:16:27
|
Bugs item #3577567, was opened at 2012-10-16 00:16 Message generated for change (Tracker Item Submitted) made by You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=547455&aid=3577567&group_id=76550 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: https://www.google.com/accounts () Assigned to: Nobody/Anonymous (nobody) Summary: tag attributes with "=" in value are not parsed properly Initial Comment: say you have an invisible field where the value contains an equal sign - this causes the value to be truncated improperly and prepended with a containing quote. some examples might be like in ASP pages where you have a viewstate which is base64 encoded and has a "=" buffer at the end. if you have a tag: value="a=b" the attribute/value pair is returned as: attribute: value value: "a this can be fixed by adding ",2" to the explode method on tidy_parser.php line 305 like so: $parts = explode('=', $raw,2); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=547455&aid=3577567&group_id=76550 |