marc 98/10/18 22:59:36
Modified: src/main http_protocol.c
Log:
After telling people to read the error log time after time, make it
explicit in the 500 error message.
Revision Changes Path
1.246 +3 -1 apache-1.3/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v
retrieving revision 1.245
retrieving revision 1.246
diff -u -r1.245 -r1.246
--- http_protocol.c 1998/10/16 07:04:44 1.245
+++ http_protocol.c 1998/10/19 05:59:35 1.246
@@ -2384,7 +2384,9 @@
ap_escape_html(r->pool, r->server->server_admin),
" and inform them of the time the error occurred,\n"
"and anything you might have done that may have\n"
- "caused the error.<P>\n", NULL);
+ "caused the error.<P>\n"
+ "More information about this error may be available\n"
+ "in the server error log.<P>\n", NULL);
if ((error_notes = ap_table_get(r->notes, "error-notes")) != NULL) {
ap_bvputs(fd, error_notes, "<P>\n", NULL);
}