diff options
author | Badlop <badlop@process-one.net> | 2009-10-20 09:56:12 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-10-20 09:56:12 +0000 |
commit | a232d16ff4bef96916d0f57d4503c3c7a376816d (patch) | |
tree | d4579b912cfa2e8e713ed1bc5dd7458b2ff834f2 /src | |
parent | In default config, only local accounts can create rooms and pubsub nodes. (diff) |
Body tag not properly closed in HTTP-Bind (thanks to Janusz Dziemidowicz)(EJAB-1075)
SVN Revision: 2685
Diffstat (limited to 'src')
-rw-r--r-- | src/web/ejabberd_http_bind.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/ejabberd_http_bind.erl b/src/web/ejabberd_http_bind.erl index bfe68195c..43fd9ecfd 100644 --- a/src/web/ejabberd_http_bind.erl +++ b/src/web/ejabberd_http_bind.erl @@ -188,7 +188,7 @@ process_request(Data, IP) -> {error, _} -> {200, ?HEADER, "<body type='terminate' " "condition='internal-server-error' " - "xmlns='" ++ ?NS_HTTP_BIND ++ "'>BOSH module not started</body"}; + "xmlns='" ++ ?NS_HTTP_BIND ++ "'>BOSH module not started</body>"}; {ok, Pid} -> handle_session_start( Pid, XmppDomain, Sid, Rid, Attrs, |