diff options
| author | Mika Havela <mika.havela@gmail.com> | 2009-07-08 19:37:34 +0000 | 
|---|---|---|
| committer | Mika Havela <mika.havela@gmail.com> | 2009-07-08 19:37:34 +0000 | 
| commit | 3409cc4583211ddfa97bcd41dc7f0b12dd5e09d4 (patch) | |
| tree | cc1816933e037249366ab6b2dbaa60f4fda39822 | |
| parent | 5e061276793706d52240c0700d950c7486cd865a (diff) | |
| download | acf-rrdtool-3409cc4583211ddfa97bcd41dc7f0b12dd5e09d4.tar.bz2 acf-rrdtool-3409cc4583211ddfa97bcd41dc7f0b12dd5e09d4.tar.xz | |
We need to be able to write time in other ways than just type the seconds
| -rw-r--r-- | rrdtool-model.lua | 3 | 
1 files changed, 0 insertions, 3 deletions
| diff --git a/rrdtool-model.lua b/rrdtool-model.lua index fa124b7..e9ff4e6 100644 --- a/rrdtool-model.lua +++ b/rrdtool-model.lua @@ -134,9 +134,6 @@ If you specify path, it should be " .. tostring(databases) .."/"  	end  	if (posix.stat(path)) then  		configfile.value.filename.errtxt = "File already exists" -	elseif (#configfile.value.start.value > 0) and not tonumber(configfile.value.start.value) then -		configfile.value.start.errtxt = "Only numeric values!" -		return configfile  	elseif (#configfile.value.step.value > 0) and not tonumber(configfile.value.step.value) then  		configfile.value.step.errtxt = "Only numeric values!"  		return configfile | 
