Skip to content
Snippets Groups Projects
Commit 1364f69d authored by rswindell's avatar rswindell
Browse files

Increased maximum time per call/day to 1440 minutes.

parent 97133fb9
No related branches found
No related tags found
No related merge requests found
...@@ -1407,20 +1407,20 @@ security level from 0 to 99. The available options for each level are: ...@@ -1407,20 +1407,20 @@ security level from 0 to 99. The available options for each level are:
case 0: case 0:
uifc.input(WIN_MID|WIN_SAV,0,0 uifc.input(WIN_MID|WIN_SAV,0,0
,"Total Time Allowed Per Day" ,"Total Time Allowed Per Day"
,ultoa(cfg.level_timeperday[i],tmp,10),3 ,ultoa(cfg.level_timeperday[i],tmp,10),4
,K_NUMBER|K_EDIT); ,K_NUMBER|K_EDIT);
cfg.level_timeperday[i]=atoi(tmp); cfg.level_timeperday[i]=atoi(tmp);
if(cfg.level_timeperday[i]>500) if(cfg.level_timeperday[i]>1440)
cfg.level_timeperday[i]=500; cfg.level_timeperday[i]=1440;
break; break;
case 1: case 1:
uifc.input(WIN_MID|WIN_SAV,0,0 uifc.input(WIN_MID|WIN_SAV,0,0
,"Time Allowed Per Call" ,"Time Allowed Per Call"
,ultoa(cfg.level_timepercall[i],tmp,10),3 ,ultoa(cfg.level_timepercall[i],tmp,10),4
,K_NUMBER|K_EDIT); ,K_NUMBER|K_EDIT);
cfg.level_timepercall[i]=atoi(tmp); cfg.level_timepercall[i]=atoi(tmp);
if(cfg.level_timepercall[i]>500) if(cfg.level_timepercall[i]>1440)
cfg.level_timepercall[i]=500; cfg.level_timepercall[i]=1440;
break; break;
case 2: case 2:
uifc.input(WIN_MID|WIN_SAV,0,0 uifc.input(WIN_MID|WIN_SAV,0,0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment