Issue #1907700 by katbailey: Remove language_init() from the array of bootstrap hooks as it no longer exists.

8.0.x
catch 2013-02-04 21:13:26 +00:00
parent 20b0c7166c
commit c962f4f5bc
1 changed files with 1 additions and 1 deletions

View File

@ -1450,7 +1450,7 @@ function drupal_serve_page_from_cache(stdClass $cache) {
* Defines the critical hooks that force modules to always be loaded.
*/
function bootstrap_hooks() {
return array('boot', 'exit', 'watchdog', 'language_init');
return array('boot', 'exit', 'watchdog');
}
/**