diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/ejabberd_config.erl | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2007-06-07 Alexey Shchepin <alexey@sevcom.net> + * src/ejabberd_config.erl: Fixed "language" option processing + (thanks to Badlop) + * src/msgs/zh.msg: Updated (thanks to Shelley Shyan) * src/msgs/ca.msg: New Catalan translation (thanks to Vicent diff --git a/src/ejabberd_config.erl b/src/ejabberd_config.erl index 35b9212a9..28c070af5 100644 --- a/src/ejabberd_config.erl +++ b/src/ejabberd_config.erl @@ -107,6 +107,8 @@ process_term(Term, State) -> State, Terms); {listen, Val} -> add_option(listen, Val, State); + {language, Val} -> + add_option(language, Val, State); {outgoing_s2s_port, Port} -> add_option(outgoing_s2s_port, Port, State); {s2s_use_starttls, Port} -> |