diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-01 17:53:18 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-01 17:53:18 +0100 |
commit | 3dc21c4fc7da90b0ef739a85351c91ab87a38148 (patch) | |
tree | 64e34def74685d8129a2b5d138294a11d011fc57 /core/sessionmanager.lua | |
parent | ea7181e5b2bf2a34e9af9919fb34e448ea9cf1af (diff) | |
download | prosody-3dc21c4fc7da90b0ef739a85351c91ab87a38148.tar.gz prosody-3dc21c4fc7da90b0ef739a85351c91ab87a38148.zip |
Send xml:lang in stream headers, fixes #78
Diffstat (limited to 'core/sessionmanager.lua')
-rw-r--r-- | core/sessionmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 2862cd52..24da7c83 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -165,7 +165,7 @@ function streamopened(session, attr) (session.log or session)("debug", "Client sent opening <stream:stream> to %s", session.host); send("<?xml version='1.0'?>"); - send(format("<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s' version='1.0'>", session.streamid, session.host)); + send(format("<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s' version='1.0' xml:lang='en'>", session.streamid, session.host)); if not hosts[session.host] then -- We don't serve this host... |