aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2020-04-21 05:58:33 +1000
committeronefang2020-04-21 05:58:33 +1000
commit22424137d6c359a072b10fe75052bb0160388cba (patch)
treea49a2a6a1c83e9fa13fa7de8fab45a997b88bac2
parentPart of the validated member list code. (diff)
downloadopensim-SC_OLD-22424137d6c359a072b10fe75052bb0160388cba.zip
opensim-SC_OLD-22424137d6c359a072b10fe75052bb0160388cba.tar.gz
opensim-SC_OLD-22424137d6c359a072b10fe75052bb0160388cba.tar.bz2
opensim-SC_OLD-22424137d6c359a072b10fe75052bb0160388cba.tar.xz
Fix up backing out of the list of users.
"cancel" has a special meaning, so use "back" instead.
-rw-r--r--src/sledjchisl/sledjchisl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c
index 8980bd4..9f8ea6f 100644
--- a/src/sledjchisl/sledjchisl.c
+++ b/src/sledjchisl/sledjchisl.c
@@ -5200,8 +5200,8 @@ void account_html(char *file, reqData *Rd, HTMLfile *thisFile)
5200 addSession(iF); 5200 addSession(iF);
5201 fld = addInputField(iF, LUA_TSTRING, "name", "name", NULL, nameValidate, nameWeb); 5201 fld = addInputField(iF, LUA_TSTRING, "name", "name", NULL, nameValidate, nameWeb);
5202 inputFieldExtra(fld, FLD_HIDDEN, 42, 63); 5202 inputFieldExtra(fld, FLD_HIDDEN, 42, 63);
5203 addSubmit(iF, "login", "", NULL, accountView, "accountView"); // Coz we sometimes want to trigger this from code. 5203 addSubmit(iF, "login", "", NULL, accountView, "accountView"); // Coz we sometimes want to trigger this from code.
5204 addSubmit(iF, "cancel", "cancel", NULL, accountView, "accountView"); 5204 addSubmit(iF, "back", "back", NULL, accountView, "accountView");
5205 5205
5206 5206
5207 iF = newInputForm("accountEdit", "account edit", NULL, accountEditWeb, accountLoginWeb); 5207 iF = newInputForm("accountEdit", "account edit", NULL, accountEditWeb, accountLoginWeb);