Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an unterminated transaction in the /admin_th1 page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
447d273214bfdaf32cd63ebd522524f9 |
User & Date: | drh 2018-08-31 20:24:44.774 |
Context
2018-08-31
| ||
21:07 | Render captchas in a smaller font that works better on mobile. ... (check-in: 75c89def user: drh tags: trunk) | |
20:24 | Fix an unterminated transaction in the /admin_th1 page. ... (check-in: 447d2732 user: drh tags: trunk) | |
19:21 | Less vertical space on the default menus and title. ... (check-in: 96938c42 user: drh tags: trunk) | |
Changes
Changes to src/setup.c.
︙ | ︙ | |||
1361 1362 1363 1364 1365 1366 1367 | const char *zQ = P("q"); int go = P("go")!=0; login_check_credentials(); if( !g.perm.Setup ){ login_needed(0); return; } | < | 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 | const char *zQ = P("q"); int go = P("go")!=0; login_check_credentials(); if( !g.perm.Setup ){ login_needed(0); return; } style_header("Raw TH1 Commands"); @ <p><b>Caution:</b> There are no restrictions on the TH1 that can be @ run by this page. If Tcl integration was enabled at compile-time and @ the "tcl" setting is enabled, Tcl commands may be run as well.</p> @ @ <form method="post" action="%s(g.zTop)/admin_th1"> login_insert_csrf_secret(); |
︙ | ︙ |