Autoapplying on creation / deletion of sections is annoying, disable it.
[oweals/luci.git] / libs / cbi / luasrc / cbi.lua
index d19e0eb73e7baf483902adf24eaea588dee6afe3..d24fa6ad03d1dc67471f90bc45e840983b55016e 100644 (file)
@@ -769,6 +769,7 @@ end
 
 -- Removes the section
 function AbstractSection.remove(self, section)
+       self.map.autoapply = false
        return self.map:del(section)
 end
 
@@ -795,6 +796,8 @@ function AbstractSection.create(self, section)
                end
        end
 
+       self.map.autoapply = false
+
        return stat
 end