Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix mis-coded HTML on the /setup_access page. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ecab8f430ff365ebadb203cdfd2dc5fc |
| User & Date: | drh 2022-02-11 14:57:44.856 |
Context
|
2022-02-11
| ||
| 15:26 | Enhance security audit to warn about giving hyperlink privilege to user nobody. check-in: 5999d2446b user: drh tags: trunk | |
| 14:57 | Fix mis-coded HTML on the /setup_access page. check-in: ecab8f430f user: drh tags: trunk | |
|
2022-02-10
| ||
| 23:30 | Fix a warning for unused variable 'p' introduced by [487e465263fd21] check-in: 8895d938e2 user: george tags: trunk | |
Changes
Changes to src/setup.c.
| ︙ | ︙ | |||
206 207 208 209 210 211 212 |
setup_incr_cfgcnt();
admin_log("Set option [%q] to [%q].",
zVar, iQ ? "on" : "off");
iVal = iQ;
}
}
@ <label><input type="checkbox" name="%s(zQParm)" \
| | | 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
setup_incr_cfgcnt();
admin_log("Set option [%q] to [%q].",
zVar, iQ ? "on" : "off");
iVal = iQ;
}
}
@ <label><input type="checkbox" name="%s(zQParm)" \
@ aria-label="%h(zLabel[0]?zLabel:zQParm)" \
if( iVal ){
@ checked="checked" \
}
if( disabled ){
@ disabled="disabled" \
}
@ /> <b>%s(zLabel)</b></label>
|
| ︙ | ︙ |