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.