summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-20 05:40:14 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-20 05:40:14 +0000
commita47643cb091a363514f8589f548338ec40eadbc4 (patch)
treec7fc8592cb1768e6eb34676b964388eefde7b70a /install.php
parentf3f48753b361b5a89bbe973e76257864bb3bc0e4 (diff)
downloadbrdo-a47643cb091a363514f8589f548338ec40eadbc4.tar.gz
brdo-a47643cb091a363514f8589f548338ec40eadbc4.tar.bz2
- Patch #160732 by JohnAlbin: fixed E_NOTICE in the installer.
Diffstat (limited to 'install.php')
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index 02b822a47..cc8b3199b 100644
--- a/install.php
+++ b/install.php
@@ -523,7 +523,7 @@ function install_select_locale($profilename) {
$output .= '<ul><li><a href="install.php?profile='. $profilename . '&amp;locale=en">'. st('Continue installation in English') .'</a></li><li><a href="install.php?profile='. $profilename . '">'. st('Return to choose a language') .'</a></li></ul>';
}
else {
- $output .= '<ul><li><a href="install.php?profile='. $profilename . '&amp;locale=en">'. st('Install Drupal in English') .'</a></li><li><a href="install.php?profile='. $profilename . '&localize=true">'. st('Learn how to install Drupal in other languages') .'</a></li></ul>';
+ $output = '<ul><li><a href="install.php?profile='. $profilename . '&amp;locale=en">'. st('Install Drupal in English') .'</a></li><li><a href="install.php?profile='. $profilename . '&localize=true">'. st('Learn how to install Drupal in other languages') .'</a></li></ul>';
}
print theme('install_page', $output);
exit;