diff options
author | Badlop <badlop@process-one.net> | 2010-07-26 20:20:15 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2010-07-28 19:59:39 +0200 |
commit | 367353100b4729577954defb5f1bd64a4335ef21 (patch) | |
tree | 1d6fd49bf4c11e24dd3fab2c075b9e8a2d662869 /src/web/mod_http_bind.erl | |
parent | Return Registered element when account exists (thanks to PioneerMike) (diff) |
Don't say v1.2, because that number is never increased and is confusing
Diffstat (limited to '')
-rw-r--r-- | src/web/mod_http_bind.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/web/mod_http_bind.erl b/src/web/mod_http_bind.erl index 586b8eaa..25e964f9 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). @@ -80,7 +78,7 @@ process(_Path, _Request) -> [{xmlcdata, "400 Bad Request"}]}}. get_human_html_xmlel() -> - Heading = "ejabberd " ++ atom_to_list(?MODULE) ++ " v" ++ ?MOD_HTTP_BIND_VERSION, + Heading = "ejabberd " ++ atom_to_list(?MODULE), {xmlelement, "html", [{"xmlns", "http://www.w3.org/1999/xhtml"}], [{xmlelement, "head", [], [{xmlelement, "title", [], [{xmlcdata, Heading}]}]}, |