* src/web/ejabberd_web_admin.erl: Bugfix (thanks to Badlop)

SVN Revision: 403
This commit is contained in:
Alexey Shchepin 2005-08-06 22:23:53 +00:00
parent 1baf1551be
commit 3603330387
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-08-07 Alexey Shchepin <alexey@sevcom.net>
* src/web/ejabberd_web_admin.erl: Bugfix (thanks to Badlop)
2005-08-05 Alexey Shchepin <alexey@sevcom.net>
* src/win32/inetrc: Added (thanks to Sergei Golovan)

View File

@ -1972,7 +1972,7 @@ get_node(global, Node, ["ports"], Query, Lang) ->
];
get_node(Host, Node, ["modules"], Query, Lang) when is_list(Host) ->
Modules = rpc:call(Node, gen_mod, loaded_modules_with_opts, []),
Modules = rpc:call(Node, gen_mod, loaded_modules_with_opts, [Host]),
Res = case catch node_modules_parse_query(Host, Node, Modules, Query) of
submitted ->
ok;