diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-27 11:07:36 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-27 11:07:36 +0000 |
commit | d665a2ce9e6d77797ffd9b4440faf57bb1ff0a5c (patch) | |
tree | 3402fae06b7e05d0e7523eb8d2d2875ed890a62f | |
parent | 1e985830e217d5291174e7da403e76b54cbab1f3 (diff) | |
download | brdo-d665a2ce9e6d77797ffd9b4440faf57bb1ff0a5c.tar.gz brdo-d665a2ce9e6d77797ffd9b4440faf57bb1ff0a5c.tar.bz2 |
#894900 by mrfelton: Fixed Call to undefined function locale_language_negotiation_info() on site upgrade.
-rw-r--r-- | modules/locale/locale.install | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/locale/locale.install b/modules/locale/locale.install index 3bbb3bbae..80dbab9a8 100644 --- a/modules/locale/locale.install +++ b/modules/locale/locale.install @@ -46,6 +46,7 @@ function locale_update_7000() { */ function locale_update_7001() { require_once DRUPAL_ROOT . '/includes/language.inc'; + require_once DRUPAL_ROOT . '/modules/locale/locale.module'; switch (variable_get('language_negotiation', 0)) { // LANGUAGE_NEGOTIATION_NONE. |