1.20.x drupal.inc drupal_send_headers($default_headers = array(), $only_default = FALSE)

Sends the HTTP response headers that were previously set, adding defaults.

Deprecated

since 1.0.0

See also

backdrop_send_headers()

Related topics

File

includes/drupal.inc, line 176
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_send_headers($default_headers = array(), $only_default = FALSE) {
  backdrop_send_headers($default_headers, $only_default);
}