From 6870b5cebe6e962e7f02b83a7aa932d62a2ecf37 Mon Sep 17 00:00:00 2001 From: Ermal Date: Wed, 19 Jun 2013 08:42:15 +0000 Subject: Correct the comments describing the error with correct values --- etc/inc/shaper.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'etc') diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc index d3e540a..078652b 100644 --- a/etc/inc/shaper.inc +++ b/etc/inc/shaper.inc @@ -2890,10 +2890,10 @@ class dummynet_class { shaper_do_input_validation($data, $reqdfields, $reqdfieldsn, $input_errors); if ($data['plr'] && ((!is_numeric($data['plr'])) || - ($data['plr'] <= 0 && $data['plr'] > 1))) - $input_errors[] = gettext("Plr must be an integer between 1 and 100."); + ($data['plr'] < 0 && $data['plr'] > 1))) + $input_errors[] = gettext("Plr must be a value between 0 and 1."); if (($data['buckets'] && (!is_numeric($data['buckets']))) || - ($data['buckets'] < 1 && $data['buckets'] > 100)) + ($data['buckets'] < 16 && $data['buckets'] > 65535)) $input_errors[] = gettext("Buckets must be an integer between 16 and 65535."); if ($data['qlimit'] && (!is_numeric($data['qlimit']))) $input_errors[] = gettext("Queue limit must be an integer"); -- cgit v1.1