Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Correct typo in title of web page |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a3e50c99f343eb6ebe66ac86d4a2f0ed |
| User & Date: | andygoth 2017-09-20 04:08:07.495 |
Context
|
2017-09-20
| ||
| 12:10 | Remove support for the legacy configuration sync transfer format, that was replaced in 2011. check-in: 2ed7c1123d user: drh tags: trunk | |
| 04:08 | Correct typo in title of web page check-in: a3e50c99f3 user: andygoth tags: trunk | |
| 04:05 | Correct comment typos check-in: b1191c1ee0 user: andygoth tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
2363 2364 2365 2366 2367 2368 2369 |
int cnt = 0;
Blob namelist;
login_check_credentials();
if( !g.perm.Setup && !g.perm.Admin ){
login_needed(0);
return;
}
| | | 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 |
int cnt = 0;
Blob namelist;
login_check_credentials();
if( !g.perm.Setup && !g.perm.Admin ){
login_needed(0);
return;
}
style_header("URL Alias Configuration");
if( P("submit")!=0 ){
Blob token;
Blob sql;
const char *zNewName;
const char *zValue;
char zCnt[10];
login_verify_csrf_secret();
|
| ︙ | ︙ |