diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-09-01 09:27:04 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-09-01 09:27:04 +0000 |
commit | dac1e339889c8076b83f0cbb4264fe84fbd7f644 (patch) | |
tree | 5e9b502f9c4cd5f93cf567f9b833019d5f6f40fb | |
parent | 883e563196164167b6eab609be11742e95469a9f (diff) | |
download | brdo-dac1e339889c8076b83f0cbb4264fe84fbd7f644.tar.gz brdo-dac1e339889c8076b83f0cbb4264fe84fbd7f644.tar.bz2 |
Pretty up the status report code
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 972079d3e..6962c4e3d 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -12,7 +12,7 @@ define('DRUPAL_MINIMUM_APACHE', '1.3'); // If using Apache function system_requirements($phase) { $requirements = array(); // Ensure translations don't break at install time - $t = function_exists('t') ? 't' : 'st'; + $t = get_t(); // Report Drupal version if ($phase == 'runtime') { |