Skip Menu |

This queue is for tickets about the GraphViz CPAN distribution.

Report information
The Basics
Id: 90528
Status: resolved
Worked: 35 min
Priority: 0/
Queue: GraphViz

People
Owner: Nobody in particular
Requestors: Smylers [...] stripey.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.14
Fixed in: 2.14



Subject: Escape Quote Marks in Labels
Hi there. There's a typo which means quote marks in node labels aren't being escaped properly. The problem is in sub _attributes. This is the fix: - $value =~ s|"|\"|g; + $value =~ s|"|\\"|g; (With just one backslash the statement is a no-op, because the backslash just escapes the quote mark.) Cheers.
Fix in V 2.15. Thanx for the report.