diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index c022e8eb27cd8df1f379b61357bf6533e6d26fdc..bc5d5a326ebed0d7b448e8e599261d5a31273605 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -2519,6 +2519,7 @@ function get_t() {
  * Initialize all the defined language types.
  */
 function drupal_language_initialize() {
+  global $language;
   $types = language_types();
 
   // Ensure the language is correctly returned, even without multilanguage
@@ -2538,6 +2539,9 @@ function drupal_language_initialize() {
     // environments.
     bootstrap_invoke_all('language_init');
   }
+
+  // Send appropriate HTTP-Header for browsers and search engines.
+  header('Content-Language: ' . $language->language);
 }
 
 /**