summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-14 10:22:17 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-14 10:22:17 +0000
commitef09cf93e5ac3b0a3783170c6f29fdc4f9df6224 (patch)
treeacc3d22f10ba7b0de9116f3a9f0243e1ea99cb57 /install.php
parent942f63b4ca940d04e8e2229387e2d511b3f9aba1 (diff)
downloadbrdo-ef09cf93e5ac3b0a3783170c6f29fdc4f9df6224.tar.gz
brdo-ef09cf93e5ac3b0a3783170c6f29fdc4f9df6224.tar.bz2
- Patch #517542 by David Strauss: renamed functions for clarity. We say 'yay' to clarity!
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 1d94a7fb3..ba10ef279 100644
--- a/install.php
+++ b/install.php
@@ -46,7 +46,7 @@ function install_main() {
drupal_page_header();
// Set up $language, so t() caller functions will still work.
- drupal_init_language();
+ drupal_language_initialize();
// Load module basics (needed for hook invokes).
include_once DRUPAL_ROOT . '/includes/module.inc';
@@ -622,7 +622,7 @@ function install_tasks($profile, $task) {
// Bootstrap newly installed Drupal, while preserving existing messages.
$messages = isset($_SESSION['messages']) ? $_SESSION['messages'] : '';
- drupal_install_init_database();
+ drupal_install_initialize_database();
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
$_SESSION['messages'] = $messages;