]> granicus.if.org Git - ejabberd/commitdiff
* src/mod_muc/mod_muc_room.erl: Hide the option 'Make room
authorBadlop <badlop@process-one.net>
Thu, 29 Nov 2007 16:16:10 +0000 (16:16 +0000)
committerBadlop <badlop@process-one.net>
Thu, 29 Nov 2007 16:16:10 +0000 (16:16 +0000)
moderated' because it isn't implemented, and set the default value
of 'moderated' to true because that is the behaviour
implemented (EJAB-419)

SVN Revision: 999

ChangeLog
src/mod_muc/mod_muc_room.erl

index 9b2b9871ca5cbc9f8998f8564ac1fad3684b3bdb..6b38c68b7cc81be7842a58d9235f2c01acb5a055 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-11-29  Badlop  <badlop@process-one.net>
+
+       * src/mod_muc/mod_muc_room.erl: Hide the option 'Make room
+       moderated' because it isn't implemented, and set the default value
+       of 'moderated' to true because that is the behaviour
+       implemented (EJAB-419)
+
 2007-11-28  Badlop  <badlop@process-one.net>
 
        * doc/guide.tex: It should be made more clear that domain_certfile
index 6b7bd0fff9570c7d41c7d7f2ec451ea151900e14..327561a0ca014ce32382314f89229afe325f9036 100644 (file)
@@ -46,7 +46,7 @@
                 public = true,
                 public_list = true,
                 persistent = false,
-                moderated = false, % TODO
+                moderated = true, % TODO
                 members_by_default = true,
                 members_only = false,
                 allow_user_invites = false,
@@ -2536,9 +2536,9 @@ get_config(Lang, StateData, From) ->
         ?BOOLXFIELD("Make room members-only",
                     "muc#roomconfig_membersonly",
                     Config#config.members_only),
-        ?BOOLXFIELD("Make room moderated",
-                    "muc#roomconfig_moderatedroom",
-                    Config#config.moderated),
+        %%?BOOLXFIELD("Make room moderated",
+        %%          "muc#roomconfig_moderatedroom",
+        %%          Config#config.moderated),
         ?BOOLXFIELD("Default users as participants",
                     "members_by_default",
                     Config#config.members_by_default),