summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-05-11 07:33:46 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-05-11 07:33:46 +0000
commitb09fbd8e504a941aa27140ed8eaf467d3d88ad17 (patch)
tree5ec18374794e90db9809dbfe024be5a736d72ce0 /install.php
parent21fe511dfa6727f0a0ef43865f953fac78e32c30 (diff)
downloadbrdo-b09fbd8e504a941aa27140ed8eaf467d3d88ad17.tar.gz
brdo-b09fbd8e504a941aa27140ed8eaf467d3d88ad17.tar.bz2
#141637 by merlinofchaos and yched: follow up fixes to the installer patch, properly rebuilding the menu when done and returning update results
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 453fed165..de62188db 100644
--- a/install.php
+++ b/install.php
@@ -584,7 +584,6 @@ function install_tasks($profile, $task) {
if ($task == 'configure') {
drupal_set_title(st('Configure site'));
- menu_rebuild();
// We break the form up so we can tell when it's been successfully
// submitted.
@@ -634,6 +633,7 @@ function install_tasks($profile, $task) {
// The end of the install process. Remember profile used.
if ($task == 'done') {
+ menu_rebuild();
variable_set('install_profile', $profile);
}
@@ -679,7 +679,7 @@ function install_task_list($active = NULL) {
'profile' => st('Choose profile'),
'locale' => st('Choose language'),
'requirements' => st('Verify requirements'),
- 'database' => st('Database setup'),
+ 'database' => st('Setup database'),
'configure' => st('Configure site'),
);