aboutsummaryrefslogtreecommitdiffstats
path: root/config/varnish64
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@su.local>2010-05-11 11:53:54 -0400
committerScott Ullrich <sullrich@su.local>2010-05-11 11:53:54 -0400
commitd9e6c2b8bbff310ee3069528a8f718a4cbde7258 (patch)
treefde18dd83e5d8ebb5e664a9c95d4f7d189342c9c /config/varnish64
parent5c1c1f0144cf5864bdc8097c923e78c569825446 (diff)
downloadpfsense-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')
-rw-r--r--config/varnish64/varnish.inc2
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']))