Correct the comments describing the error with correct values

This commit is contained in:
Ermal 2013-06-19 08:42:15 +00:00
parent d5e4f7c947
commit 6870b5cebe

View File

@ -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");