fixed searilization of request/response/session in tickets (they are stored as html, thanks Dominik

This commit is contained in:
Massimo
2013-01-17 17:33:17 -06:00
parent c2ae4776a2
commit bb40239ed0
5 changed files with 132 additions and 147 deletions
+2 -2
View File
@@ -2243,9 +2243,9 @@ class BEAUTIFY(DIV):
for c in self.components:
if hasattr(c, 'value') and not callable(c.value):
if c.value:
components.append(c.value)
components.append(c.value)
if hasattr(c, 'xml') and callable(c.xml):
components.append(c)
c = str(c)
continue
elif hasattr(c, 'keys') and callable(c.keys):
rows = []