diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-11 03:15:51 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-11 03:15:51 +0000 |
commit | 9b3c7eb44f6f0aa647a63380c2be8cd3a97f2571 (patch) | |
tree | 277344fa83fd08e3c00c0fc652cf6e54490b3f88 /install.php | |
parent | d4a597fd4bb2713b8f828211db6caa1b44c46faf (diff) | |
download | brdo-9b3c7eb44f6f0aa647a63380c2be8cd3a97f2571.tar.gz brdo-9b3c7eb44f6f0aa647a63380c2be8cd3a97f2571.tar.bz2 |
#561278 by Arancaytar: Fixed installation profile name escaping.
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index fab65fc7a..a49817b38 100644 --- a/install.php +++ b/install.php @@ -1415,7 +1415,7 @@ function install_import_locales_remaining(&$install_state) { * A message informing the user that the installation is complete. */ function install_finished(&$install_state) { - drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_name()))); + drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_name())), PASS_THROUGH); $messages = drupal_set_message(); $output = '<p>' . st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) . '</p>'; $output .= '<p>' . (isset($messages['error']) ? st('Review the messages above before continuing on to <a href="@url">your new site</a>.', array('@url' => url(''))) : st('You may now visit <a href="@url">your new site</a>.', array('@url' => url('')))) . '</p>'; |