Changeset

6743:adf2fdf1264a

MUC: Prevent admins from being given affiliatons other than owner
author Kim Alvefur <zash@zash.se>
date Thu, 25 Jun 2015 17:58:24 +0200
parents 6742:6efeb801d62f
children 6744:79318d548465 6773:ef22c17cc24d
files plugins/muc/mod_muc.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/muc/mod_muc.lua	Thu Jun 25 17:54:19 2015 +0200
+++ b/plugins/muc/mod_muc.lua	Thu Jun 25 17:58:24 2015 +0200
@@ -51,7 +51,7 @@
 	return _get_affiliation(self, jid);
 end
 function muclib.room_mt:set_affiliation(actor, jid, affiliation, callback, reason)
-	if is_admin(jid) then return nil, "modify", "not-acceptable"; end
+	if affiliation ~= "owner" and is_admin(jid) then return nil, "modify", "not-acceptable"; end
 	return _set_affiliation(self, actor, jid, affiliation, callback, reason);
 end