From: Daniel Gruno Date: Sun, 27 May 2012 20:38:47 +0000 (+0000) Subject: Add a small hack to preserve newlines and still retain the links to the doxygen stuff... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18f910ce87dbbf345b4d4368ebb7db3f9cc4012e;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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);