]> granicus.if.org Git - ejabberd/commitdiff
* src/mod_muc/mod_muc_room.erl: Changed default max number of user
authorMickaël Rémond <mickael.remond@process-one.net>
Tue, 28 Aug 2007 15:05:52 +0000 (15:05 +0000)
committerMickaël Rémond <mickael.remond@process-one.net>
Tue, 28 Aug 2007 15:05:52 +0000 (15:05 +0000)
in a room to 200 (EJAB-248)

SVN Revision: 895

ChangeLog
src/mod_muc/mod_muc_room.erl

index f634297cb3528954c6578d18208fe5c849b1f91c..ee2bb1c7d28c7ab9cbdbc4190cb394fcfb6ced2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-08-28  Mickael Remond  <mremond@process-one.net>
 
+       * src/mod_muc/mod_muc_room.erl: Changed default max number of user
+       in a room to 200 (EJAB-248)
+       
        * src/mod_offline_odbc.erl: Implements quota for offline messages
        in relational database (EJAB-314)
        * src/odbc/odbc_queries.erl: Likewise
index 0691423b1a41068970425d7539341f0576de93c2..76522714f7d514a407326908f2d378fe27127084 100644 (file)
@@ -30,7 +30,7 @@
 -include("ejabberd.hrl").
 -include("jlib.hrl").
 
--define(MAX_USERS_DEFAULT, 100).
+-define(MAX_USERS_DEFAULT, 200).
 -define(MAX_USERS_DEFAULT_LIST, [5, 10, 20, 30, 50, 100, 200, 500, 1000, 2000, 5000]).
 
 -define(SETS, gb_sets).