From 9265c23e1a9f913d3ccbc963533085cdb9e9293c Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 26 Jul 2010 20:20:15 +0200 Subject: [PATCH] Don't say v1.2, because that number is never increased and is confusing --- src/web/mod_http_bind.erl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/web/mod_http_bind.erl b/src/web/mod_http_bind.erl index 2e1c4fa64..32d702eb0 100644 --- a/src/web/mod_http_bind.erl +++ b/src/web/mod_http_bind.erl @@ -33,8 +33,6 @@ -module(mod_http_bind). -author('steve@zeank.in-berlin.de'). --define(MOD_HTTP_BIND_VERSION, "1.2"). - %%-define(ejabberd_debug, true). -behaviour(gen_mod). @@ -81,7 +79,7 @@ process(_Path, _Request) -> [#xmlcdata{cdata = <<"400 Bad Request">>}]}}. get_human_html_xmlel() -> - Heading = list_to_binary("ejabberd " ++ atom_to_list(?MODULE) ++ " v" ++ ?MOD_HTTP_BIND_VERSION), + Heading = list_to_binary("ejabberd " ++ atom_to_list(?MODULE)), H = #xmlel{name = h1, children = [#xmlcdata{cdata = Heading}]}, Par1 = #xmlel{name = p, children = [#xmlcdata{cdata = <<"An implementation of ">>},