diff --git a/modules/system/system.module b/modules/system/system.module index 23c2cb73494..7282e156c80 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -29,8 +29,8 @@ function system_help($section) { return '

'. t('Select which themes are available to your users and specify the default theme. To configure site-wide display settings, click the "configure" task above. Alternately, to override these settings in a specific theme, click the "configure" link for the corresponding theme. Note that different themes may have different regions available for rendering content like blocks. If you want consistency in what your users see, you may wish to enable only one theme.') .'

'; case 'admin/build/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/build/themes/settings/'. arg(3): - $reference = explode('.', arg(3), 2); + case 'admin/build/themes/settings/'. arg(4): + $reference = explode('.', arg(4), 2); $theme = array_pop($reference); 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/build/themes/settings'))) .'

'; case 'admin/build/modules':