summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-27 14:23:00 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-27 14:23:00 +0000
commit7e4ef32530180dd32c6c116f34b39f50baef34e6 (patch)
treef2be6773fe7d0eb7b71ce02992719cc1fca8a177 /install.php
parent4441334133fc4dddf442e4fbd7c106cb289f3372 (diff)
downloadbrdo-7e4ef32530180dd32c6c116f34b39f50baef34e6.tar.gz
brdo-7e4ef32530180dd32c6c116f34b39f50baef34e6.tar.bz2
Reported at http://groups.drupal.org/node/7843 by kkaefer: t() was used in install.php in place of st()
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 0947c1734..d0c7dd925 100644
--- a/install.php
+++ b/install.php
@@ -637,8 +637,8 @@ function install_tasks($profile, $task) {
$batch = array(
'operations' => $operations,
'finished' => '_install_profile_batch_finished',
- 'title' => t('Installing @drupal', array('@drupal' => drupal_install_profile_name())),
- 'error_message' => t('The installation has encountered an error.'),
+ 'title' => st('Installing @drupal', array('@drupal' => drupal_install_profile_name())),
+ 'error_message' => st('The installation has encountered an error.'),
);
// Start a batch, switch to 'profile-install-batch' task. We need to
// set the variable here, because batch_process() redirects.