diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-09-01 09:23:45 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-09-01 09:23:45 +0000 |
commit | 883e563196164167b6eab609be11742e95469a9f (patch) | |
tree | 3e5c988321baca021cf4079614a9c8004be6909b /modules/system/system.module | |
parent | dd4f143df621bb926934335c4fdf44f8267f6039 (diff) | |
download | brdo-883e563196164167b6eab609be11742e95469a9f.tar.gz brdo-883e563196164167b6eab609be11742e95469a9f.tar.bz2 |
Pretty up the status report
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 29176036b..8ca5fb4de 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -46,7 +46,7 @@ function system_help($section) { return t('<p>Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. Click on the name of the module in the navigation menu for their individual configuration pages. Once a module is enabled, new <a href="@permissions">permissions</a> might be made available. Modules can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by enabling the throttle.module and checking throttle. The auto-throttle functionality must be enabled on the <a href="@throttle">throttle configuration page</a> after having enabled the throttle module.</p> <p>It is important that <a href="@update-php">update.php</a> is run every time a module is updated to a newer version.</p>', array('@permissions' => url('admin/user/access'), '@throttle' => url('admin/settings/throttle'), '@update-php' => $base_url .'/update.php')); case 'admin/logs/status': - return t('<p>Here you can find a short overview of your Drupal site\'s parameters as well as any problems detected with your installation. It is useful for example to copy/paste this information when you need support.</p>'); + return t('<p>Here you can find a short overview of your Drupal site\'s parameters as well as any problems detected with your installation. It is useful to copy/paste this information when you need support.</p>'); } } @@ -1427,6 +1427,7 @@ function theme_status_report(&$requirements) { $class = $i % 2 == 0 ? 'even' : 'odd'; $classes = array( + REQUIREMENT_INFO => 'info', REQUIREMENT_OK => 'ok', REQUIREMENT_WARNING => 'warning', REQUIREMENT_ERROR => 'error', |