summaryrefslogtreecommitdiff
path: root/export_xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'export_xml.c')
-rw-r--r--export_xml.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/export_xml.c b/export_xml.c
index f7509c3..1bacc5c 100644
--- a/export_xml.c
+++ b/export_xml.c
@@ -53,6 +53,10 @@ int export_xml(struct channel_t *channel, struct user_t *users) {
xmlNewChild(user_node, NULL, "kicks", s);
snprintf(s, 0xf, "%d", user->kicked);
xmlNewChild(user_node, NULL, "kicked", s);
+ snprintf(s, 0xf, "%d", user->monolog_lines);
+ xmlNewChild(user_node, NULL, "monolog_lines", s);
+ snprintf(s, 0xf, "%d", user->monologs);
+ xmlNewChild(user_node, NULL, "monologs", s);
/* Add lines for this user. */
xmlNodePtr lines_node = xmlNewChild(user_node, NULL, "lines", NULL);