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

As requested by Mark Lewis:

reflect the new setting in the menu once it is changed
parent 07f638c2
Branches
Tags
No related merge requests found
...@@ -322,20 +322,20 @@ function main() ...@@ -322,20 +322,20 @@ function main()
var cmd = 0; var cmd = 0;
var link = 0; var link = 0;
var links; var links;
var menu = ["Global AKA Matching : "+(tickit.gcfg.akamatching === true ? "Yes" : "No"),
"Global Force Replace : "+(tickit.gcfg.forcereplace === true ? "Yes" : "No"),
"Global Ignore Password: "+(tickit.gcfg.ignorepassword === true ? "Yes" : "No"),
"Global Secure Only : "+(tickit.gcfg.secureonly === true ? "Yes" : "No"),
"Global Source Address : "+(tickit.gcfg.sourceaddress === undefined ? "" : tickit.gcfg.sourceaddress),
"Global Uploader Name : "+(tickit.gcfg.uploader === undefined ? "" : tickit.gcfg.uploader),
"Global Location : ",
"Global Links : ",
"Areas..."];
var tmp; var tmp;
var tmp2; var tmp2;
var ctx = new uifc.list.CTX(); var ctx = new uifc.list.CTX();
while(cmd >= 0) { while(cmd >= 0) {
var menu = ["Global AKA Matching : "+(tickit.gcfg.akamatching === true ? "Yes" : "No"),
"Global Force Replace : "+(tickit.gcfg.forcereplace === true ? "Yes" : "No"),
"Global Ignore Password: "+(tickit.gcfg.ignorepassword === true ? "Yes" : "No"),
"Global Secure Only : "+(tickit.gcfg.secureonly === true ? "Yes" : "No"),
"Global Source Address : "+(tickit.gcfg.sourceaddress === undefined ? "" : tickit.gcfg.sourceaddress),
"Global Uploader Name : "+(tickit.gcfg.uploader === undefined ? "" : tickit.gcfg.uploader),
"Global Location : ",
"Global Links : ",
"Areas..."];
cmd = uifc.list(WIN_ORG|WIN_ACT|WIN_MID|WIN_ESC, "Global Options", menu, ctx); cmd = uifc.list(WIN_ORG|WIN_ACT|WIN_MID|WIN_ESC, "Global Options", menu, ctx);
switch(cmd) { switch(cmd) {
case 0: case 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment