diff options
Diffstat (limited to 'src/mod_pubsub.erl')
-rw-r--r-- | src/mod_pubsub.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mod_pubsub.erl b/src/mod_pubsub.erl index 80f6c05a9..a61defc33 100644 --- a/src/mod_pubsub.erl +++ b/src/mod_pubsub.erl @@ -47,7 +47,8 @@ -behaviour(gen_mod). -behaviour(gen_server). -author('christophe.romain@process-one.net'). --version('1.13-1'). +-protocol({xep, 60, '1.13-1'}). +-protocol({xep, 163, '1.2'}). -include("ejabberd.hrl"). -include("logger.hrl"). @@ -3662,7 +3663,7 @@ max_items(Host, Options) -> -define(INTEGER_CONFIG_FIELD(Label, Var), ?STRINGXFIELD(Label, <<"pubsub#", (atom_to_binary(Var, latin1))/binary>>, - (integer_to_binary(get_option(Options, Var))))). + (jlib:integer_to_binary(get_option(Options, Var))))). -define(JLIST_CONFIG_FIELD(Label, Var, Opts), ?LISTXFIELD(Label, |