Index: modules/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/system.module,v retrieving revision 1.204.2.3 diff -u -u -F^f -r1.204.2.3 system.module --- modules/system.module 1 Jun 2005 04:17:17 -0000 1.204.2.3 +++ modules/system.module 30 Jun 2005 00:52:47 -0000 @@ -22,7 +22,8 @@ function system_help($section) { case 'admin/themes/settings': return t('

These options control the default display settings for your entire site, across all themes. Unless they have been overridden by a specific theme, these settings will be used.

'); case 'admin/themes/settings/'. arg(3): - $theme = array_pop(explode('.', arg(3), 2)); + $arg3 = explode('.', arg(3), 2); + $theme = array_pop($arg3); return t('

These options control the display settings for the %template theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the global settings for this theme.

', array('%template' => $theme, '%global' => url('admin/themes/settings'))); case 'admin/modules': return t('

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 permissions 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 throttle configuration page after having enabled the throttle module.

', array('%permissions' => url('admin/access/permissions'), '%throttle' => url('admin/settings/throttle')));