diff --git a/src/XMPP/Stanza.c b/src/XMPP/Stanza.c index 4e4aefd..15dcbb1 100644 --- a/src/XMPP/Stanza.c +++ b/src/XMPP/Stanza.c @@ -48,6 +48,11 @@ XMPPSendPlain(XMPPComponent *comp, char *fr, char *to, char *msg, char *type, ch text_elem = XMLCreateText("\"LDA HANG YOURSELF\" - Zayd"); XMLAddChild(parsee_text, text_elem); XMLAddChild(parsee, parsee_text); + + parsee_text = XMLCreateTag("mcnebs-note"); + text_elem = XMLCreateText("LDA will never beat the allegations"); + XMLAddChild(parsee_text, text_elem); + XMLAddChild(parsee, parsee_text); /* TODO: Add custom fields depending on the caller's wishes */ }