From be276306572185e2be21e2d65f62eabaaeff505b Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Sun, 27 May 2012 20:38:47 +0000 Subject: [PATCH] Add a small hack to preserve newlines and still retain the links to the doxygen stuff. (presumably this should later be fixed in the highlighter) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1343093 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/modguide.xml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index 2ce132b68a8..bc1e5712275 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -548,11 +548,14 @@ POST data is four simple lines: -apr_table_t *GET; -apr_array_header_t *POST; - -ap_args_to_table(r, &GET); -ap_parse_form_data(r, NULL, &POST, -1, 8192); +apr_table_t *GET; +apr_array_header_t*POST; + + + +ap_args_to_table(r, &GET); + +ap_parse_form_data(r, NULL, &POST, -1, 8192); -- 2.47.2