Autoapplying on creation / deletion of sections is annoying, disable it.
authorSteven Barth <steven@midlink.org>
Sat, 17 Jan 2009 13:06:18 +0000 (13:06 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 17 Jan 2009 13:06:18 +0000 (13:06 +0000)
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