Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the fossil_fatal() routine so that it avoids trying to do a webpage display if the repository database has not yet been opened. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0336ac7715e721c3d05be1a08907a775 |
| User & Date: | drh 2018-06-30 10:39:22.203 |
Context
|
2018-06-30
| ||
| 13:42 | Adjust the cgi_rfc822_datetime() routine to use the newer rfc2822 date/time format that uses "+0000" for the timezone instead of "GMT". check-in: d2a94aa96c user: drh tags: trunk | |
| 10:39 | Fix the fossil_fatal() routine so that it avoids trying to do a webpage display if the repository database has not yet been opened. check-in: 0336ac7715 user: drh tags: trunk | |
|
2018-06-29
| ||
| 15:29 | Less severe warning on the security audit if the server error log is disabled. check-in: fe5e9de1cd user: drh tags: trunk | |
Changes
Changes to src/printf.c.
| ︙ | ︙ | |||
1086 1087 1088 1089 1090 1091 1092 |
if( g.isHTTP ){
rc = 0 /* avoid HTTP 500 */;
}
}
else
#endif
{
| | | 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 |
if( g.isHTTP ){
rc = 0 /* avoid HTTP 500 */;
}
}
else
#endif
{
if( g.cgiOutput==1 && g.db ){
g.cgiOutput = 2;
cgi_reset_content();
style_header("Bad Request");
@ <p class="generalError">%h(z)</p>
cgi_set_status(400, "Bad Request");
style_footer();
cgi_reply();
|
| ︙ | ︙ |