tbrehm
2012-10-30 f3e6c510cdfee3ef9c6bee0a7e2e35c9c0be0fe4
Fixed: FS#2499 - "FastCGI max. Requests" cannot be set to zero (0) in System -> Server Config -> FastCGI tab
1 files modified
7 ■■■■ changed files
interface/web/admin/form/server_config.tform.php 7 ●●●● patch | view | raw | blame | history
interface/web/admin/form/server_config.tform.php
@@ -894,8 +894,11 @@
            'datatype' => 'VARCHAR',
            'formtype' => 'TEXT',
            'default' => '',
            'validators' => array(0 => array('type' => 'NOTEMPTY',
                    'errmsg' => 'fastcgi_max_requests_error_empty'),
            'validators' => array(    0 => array(    'type' => 'ISINT',
                                                'errmsg' => 'fastcgi_max_requests_error_empty'),
                                    1 => array(    'type' => 'RANGE',
                                                'range' => '0:',
                                                'errmsg' => 'fastcgi_max_requests_error_empty'),
            ),
            'value' => '',
            'width' => '40',