Modify ↓
Opened 18 years ago
Closed 18 years ago
#574 closed defect (fixed)
[patch] error message is not escaped correctly
Reported by: | moo | Owned by: | Peter Kropf |
---|---|---|---|
Priority: | normal | Component: | GraphvizPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.9 |
Description
fix:
-
graphviz/graphviz.py
380 383 buf.write('<div id="content" class="error"><div class="message"> \n\ 381 384 <strong>Graphviz macro processor has detected an error. Please fix the problem before continuing.</strong> \n\ 382 385 <pre>%s</pre> \n\ 383 </div></div>' % msg)386 </div></div>' % escape(msg)) 384 387 self.log.error(msg) 385 388 return buf
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [1132]) Changed version number to 0.6.5. Escaped the error message in show_err(). Fixes #574.