Differences From Artifact [343de120e8]:
- File src/style.c — part of check-in [f9c2dec2ec] at 2013-08-24 22:33:37 on branch trunk — Report all available CGI environment variables on the test_env page. (user: drh size: 32884)
To Artifact [5be034c976]:
- File src/style.c — part of check-in [4727ef4a8e] at 2013-08-30 12:18:25 on branch trunk — Add the --errorlog command-line option and the errorlog: parameter to CGI scripts. Log all panics, fatal errors, and warnings to the error log, if defined. Panic if file descriptor 2 is not open on unix. Clean up some routines that deal with close(). (user: drh size: 32947) [more...]
| ︙ | |||
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 | 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 | + |
@ </pre>
}
if( g.perm.Setup ){
const char *zRedir = P("redirect");
if( zRedir ) cgi_redirect(zRedir);
}
style_footer();
if( g.perm.Admin && P("err") ) fossil_fatal("%s", P("err"));
}
/*
** This page is a honeypot for spiders and bots.
**
** WEBPAGE: honeypot
*/
|
| ︙ |