diff options
author | Scott Ullrich <sullrich@su.local> | 2010-05-11 11:53:54 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@su.local> | 2010-05-11 11:53:54 -0400 |
commit | d9e6c2b8bbff310ee3069528a8f718a4cbde7258 (patch) | |
tree | fde18dd83e5d8ebb5e664a9c95d4f7d189342c9c /config/varnish64/varnish.inc | |
parent | 5c1c1f0144cf5864bdc8097c923e78c569825446 (diff) | |
download | pfsense-packages-d9e6c2b8bbff310ee3069528a8f718a4cbde7258.tar.gz pfsense-packages-d9e6c2b8bbff310ee3069528a8f718a4cbde7258.tar.bz2 pfsense-packages-d9e6c2b8bbff310ee3069528a8f718a4cbde7258.zip |
Correct input error for storage size text
Diffstat (limited to 'config/varnish64/varnish.inc')
-rw-r--r-- | config/varnish64/varnish.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/varnish64/varnish.inc b/config/varnish64/varnish.inc index 1a96962e..70efc48b 100644 --- a/config/varnish64/varnish.inc +++ b/config/varnish64/varnish.inc @@ -33,7 +33,7 @@ function varnish_settings_post_validate($post, $input_errors) { if($post['storagesize'] && !is_int($post['storagesize'])) - $input_errors[] = "A valid number is required for the field 'Storage type'"; + $input_errors[] = "A valid number is required for the field 'Storage size'"; if($post['listeningport'] && !is_int($post['listeningport'])) $input_errors[] = "A valid number is required for the field 'Listening port'"; if($post['minworkers'] && !is_int($post['minworkers'])) |