diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-11 02:14:20 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-09-11 02:14:20 +0000 |
commit | f018eb16bfed09aee89c938e704e516c5822be25 (patch) | |
tree | 8c0fccfe84be5e9883cdd16fc68391c2bcf2dbe9 /modules | |
parent | 9dd21483fef323f26e3cadf49aee749540c5e956 (diff) | |
download | brdo-f018eb16bfed09aee89c938e704e516c5822be25.tar.gz brdo-f018eb16bfed09aee89c938e704e516c5822be25.tar.bz2 |
#562188 by JohnAlbin: Replaced missing theme settings page help text.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 7d04cffa9..4e844bf65 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -110,8 +110,8 @@ function system_help($path, $arg) { $output = '<p>' . t('Select the default theme for Drupal. To configure site-wide display settings, click the "configure" task above. Alternatively, to override these settings in a specific theme, click the "configure" link for that theme. Note that different themes may have different regions available for displaying content.') . '</p>'; $output .= '<p>' . t('To change the appearance of your site, a number of <a href="@themes">contributed themes</a> are available.', array('@themes' => 'http://drupal.org/project/themes')) . '</p>'; return $output; - case 'admin/appearance/settings/' . $arg[4]: - $reference = explode('.', $arg[4], 2); + case 'admin/appearance/settings/' . $arg[3]: + $reference = explode('.', $arg[3], 2); $theme = array_pop($reference); return '<p>' . t('These options control the display settings for the <code>%template</code> 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 <a href="@global">global settings</a> for this theme.', array('%template' => $theme, '@global' => url('admin/appearance/settings'))) . '</p>'; case 'admin/appearance/settings': |