summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
commitb5bf8a8f476fe4214478fec9250e651164b0e76f (patch)
tree434eb5771bd9238d426be6c19d9c30730af1ab3e /install.php
parentfb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff)
downloadbrdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz
brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php
index 77b08c8b4..005cb5009 100644
--- a/install.php
+++ b/install.php
@@ -180,7 +180,7 @@ function install_settings_form($profile, $install_locale, $settings_file, $db_ur
$form['basic_options'] = array(
'#type' => 'fieldset',
'#title' => st('Basic options'),
- '#description' => st('<p>To set up your @drupal database, enter the following information.</p>', array('@drupal' => drupal_install_profile_name())),
+ '#description' => '<p>'. st('To set up your @drupal database, enter the following information.', array('@drupal' => drupal_install_profile_name())) .'</p>',
);
if (count($db_types) > 1) {
@@ -487,7 +487,7 @@ function install_select_locale_form($locales) {
function install_no_profile_error() {
drupal_maintenance_theme();
drupal_set_title(st('No profiles available'));
- print theme('install_page', st('<p>We were unable to find any installer profiles. Installer profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.</p>'));
+ print theme('install_page', '<p>'. st('We were unable to find any installer profiles. Installer profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.') .'</p>');
exit;
}
@@ -532,7 +532,7 @@ function install_complete($profile) {
// Build final page.
drupal_maintenance_theme();
drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_name())));
- $output .= st('<p>Congratulations, @drupal has been successfully installed.</p>', array('@drupal' => drupal_install_profile_name()));
+ $output .= '<p>'. st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) .'</p>';
// Show profile finalization info.
$function = $profile .'_profile_final';