From 85650a098a9917a6d17c334fdd28c9af7b64dbaa Mon Sep 17 00:00:00 2001 From: Jerenus Date: Thu, 6 Dec 2012 16:56:42 +0800 Subject: [PATCH] Issue #1853050 by Jerenus: Typos in docs for drupal_send_headers(). --- core/includes/bootstrap.inc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 03009b3..20516ec 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -1246,10 +1246,11 @@ function _drupal_set_preferred_header_name($name = NULL) { * Headers are set in drupal_add_http_header(). Default headers are not set * if they have been replaced or unset using drupal_add_http_header(). * - * @param $default_headers - * An array of headers as name/value pairs. - * @param $single - * If TRUE and headers have already be sent, send only the specified header. + * @param array $default_headers + * (optional) An array of headers as name/value pairs. + * @param bool $only_default + * (optional) If TRUE and headers have already been sent, send only the + * specified headers. */ function drupal_send_headers($default_headers = array(), $only_default = FALSE) { $headers_sent = &drupal_static(__FUNCTION__, FALSE); -- 1.7.10.4