From 7002539a4e314fe250704c7800f4c60cb9e66afd Mon Sep 17 00:00:00 2001 From: Abdulrahman Alotaibi Date: Tue, 14 Apr 2015 22:49:22 +0000 Subject: [PATCH] [1.7.x] Fixed #24644 -- Added HTTP_ACCEPT to example headers list. Backport of 62261ddd0f2d5f2e6bcce013f2913cdb1b1f0be0 from master --- docs/ref/request-response.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index d67aae62e0..106074e68e 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -147,8 +147,9 @@ All attributes should be considered read-only, unless stated otherwise below. Available headers depend on the client and server, but here are some examples: - * ``CONTENT_LENGTH`` -- the length of the request body (as a string). - * ``CONTENT_TYPE`` -- the MIME type of the request body. + * ``CONTENT_LENGTH`` -- The length of the request body (as a string). + * ``CONTENT_TYPE`` -- The MIME type of the request body. + * ``HTTP_ACCEPT`` -- Acceptable content types for the response. * ``HTTP_ACCEPT_ENCODING`` -- Acceptable encodings for the response. * ``HTTP_ACCEPT_LANGUAGE`` -- Acceptable languages for the response. * ``HTTP_HOST`` -- The HTTP Host header sent by the client.