summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 83ab8ba0b..ad0186d5d 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -1638,6 +1638,9 @@ function drupal_language_initialize() {
foreach ($types as $type) {
$GLOBALS[$type] = language_initialize($type);
}
+ // Allow modules to react on language system initialization in multilingual
+ // environments.
+ module_invoke_all('language_init', $types);
}
}