- change minimum value for dns-TTL to 1 hour instead of 1 day, refs #166

This commit is contained in:
Michael Kaufmann (d00p)
2010-05-27 20:34:49 +00:00
parent 0db11bf0f8
commit 72e6e2af24

View File

@@ -65,7 +65,7 @@ return array(
'varname' => 'defaultttl', 'varname' => 'defaultttl',
'type' => 'int', 'type' => 'int',
'default' => 604800, /* 1 week */ 'default' => 604800, /* 1 week */
'int_min' => 86400, /* 1 day */ 'int_min' => 3600, /* 1 hour */
'int_max' => 2147483647, /* integer max */ 'int_max' => 2147483647, /* integer max */
'save_method' => 'storeSettingField', 'save_method' => 'storeSettingField',
), ),