diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-19 10:34:51 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-19 10:34:51 +0000 |
commit | d17b6ad1cf85a4a91ef8fff186d96ff9c8cdd950 (patch) | |
tree | 3517d7fa0ca0e3a59edf289c67fe1ac35f2d4fa1 /update.php | |
parent | 2b811363e8ec638548cae2ac844a28823f91877e (diff) | |
download | brdo-d17b6ad1cf85a4a91ef8fff186d96ff9c8cdd950.tar.gz brdo-d17b6ad1cf85a4a91ef8fff186d96ff9c8cdd950.tar.bz2 |
#199336 by JirkaRybka: remove improper t() use in update code (update goes all in English, but there were some mistakes), and add messages to updates where there was no return value otherwise, so users know what happens in each update
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index 443bfd42c..6ade05465 100644 --- a/update.php +++ b/update.php @@ -159,7 +159,7 @@ function update_do_one($module, $number, &$context) { drupal_set_installed_schema_version($module, $number); } - $context['message'] = t('Updating @module module', array('@module' => $module)); + $context['message'] = 'Updating '. check_plain($module) .' module'; } function update_selection_page() { |