mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
When the "OpenVPN" users type was commented out of the drop-down, this function wasn't adjusted so it was off by one in its counts, making the URL table update frequency box disabled.
This commit is contained in:
parent
6478e71e95
commit
8d70eb8d9e
@ -405,7 +405,7 @@ function typesel_change() {
|
||||
eval(comd);
|
||||
}
|
||||
break;
|
||||
case 3: /* OpenVPN Users */
|
||||
/* case 3: // OpenVPN Users
|
||||
var cmd;
|
||||
|
||||
newrows = totalrows;
|
||||
@ -416,8 +416,8 @@ function typesel_change() {
|
||||
eval(comd);
|
||||
}
|
||||
break;
|
||||
|
||||
case 4: /* url */
|
||||
*/
|
||||
case 3: /* url */
|
||||
var cmd;
|
||||
newrows = totalrows;
|
||||
for(i=0; i<newrows; i++) {
|
||||
@ -426,7 +426,7 @@ function typesel_change() {
|
||||
}
|
||||
break;
|
||||
|
||||
case 5: /* urltable */
|
||||
case 4: /* urltable */
|
||||
var cmd;
|
||||
newrows = totalrows;
|
||||
for(i=0; i<newrows; i++) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user