From 869730d09e395c60ac2cae50bd723ce17c8da20e Mon Sep 17 00:00:00 2001 From: Toastman Date: Wed, 13 Mar 2013 10:53:14 +0700 Subject: [PATCH] remove "No Limit" from rate/limit selection (this was removed previously, but somehow managed to creep back again) --- release/src/router/www/qos-settings.asp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/src/router/www/qos-settings.asp b/release/src/router/www/qos-settings.asp index 42481aee29..3e7ec1ed25 100644 --- a/release/src/router/www/qos-settings.asp +++ b/release/src/router/www/qos-settings.asp @@ -28,10 +28,10 @@ REMOVE-END */ var classNames = nvram.qos_classnames.split(' '); // Toastman - configurable class names -pctListin = [[0, 'No Limit']]; +pctListin = []; for (i = 1; i <= 100; ++i) pctListin.push([i, i + '%']); -pctListout = [[0, 'No Limit']]; +pctListout = []; for (i = 1; i <= 100; ++i) pctListout.push([i, i + '%']); function scale(bandwidth, rate, ceil) -- 2.11.4.GIT