diff -r f8d14ea3ad0e -r 95daf6398dbb plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Sun Jun 13 19:19:03 2010 +0500 +++ b/plugins/muc/muc.lib.lua Sun Jun 13 20:05:45 2010 +0500 @@ -240,8 +240,10 @@ function room_mt:set_password(password) if password == "" or type(password) ~= "string" then password = nil; end - self._data.password = password; - return password; + if self._data.password ~= password then + self._data.password = password; + if self.save then self:save(true); end + end end function room_mt:get_password() return self._data.password;