summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-11 10:51:06 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-11 10:51:06 +0000
commitf412b0a5e2031a2dd4102860edb0c685e03d1d15 (patch)
treed98134f1bf2d044caeceb2994aa745f3097a6de4
parented1a53698a1d9f020c35d0cada0b9f4e990509a7 (diff)
downloadbrdo-f412b0a5e2031a2dd4102860edb0c685e03d1d15.tar.gz
brdo-f412b0a5e2031a2dd4102860edb0c685e03d1d15.tar.bz2
#172588 follow up note by Freso, patch by me: concatenation coding style fixes at end of lines in color module help
-rw-r--r--modules/color/color.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/color/color.module b/modules/color/color.module
index 7d7fe2af9..78e38906d 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -7,8 +7,8 @@
function color_help($path, $arg) {
switch ($path) {
case 'admin/help#color':
- $output = '<p>'. t('Color module allows a site administrator to quickly and easily change the color scheme of the entire site. In order for color module to work however, a theme must be specifically designed to use the color changing features. The default theme, Garland, (as well as its fixed width counterpart, Minnelli) was designed to take advantage of these features. With color module, you can easily change the color of links, backgrounds, text, and more depending on which color module enabled theme you are using. Color module requires your <a href="@url">file download method</a> to be set to public.', array('@url' => url('admin/settings/file-system'))). '</p>';
- $output .= '<p>'. t("It is important to remember that color module saves a modified copy of the theme's style.css file in the files directory, and includes it after the theme's original style.css. This means that if you make any manual changes to your theme's style.css file, you must save your color settings again, even if they haven't changed. This causes the color module generated version of style.css in the files directory to be recreated using the new version of the original file."). '</p>';
+ $output = '<p>'. t('Color module allows a site administrator to quickly and easily change the color scheme of the entire site. In order for color module to work however, a theme must be specifically designed to use the color changing features. The default theme, Garland, (as well as its fixed width counterpart, Minnelli) was designed to take advantage of these features. With color module, you can easily change the color of links, backgrounds, text, and more depending on which color module enabled theme you are using. Color module requires your <a href="@url">file download method</a> to be set to public.', array('@url' => url('admin/settings/file-system'))) .'</p>';
+ $output .= '<p>'. t("It is important to remember that color module saves a modified copy of the theme's style.css file in the files directory, and includes it after the theme's original style.css. This means that if you make any manual changes to your theme's style.css file, you must save your color settings again, even if they haven't changed. This causes the color module generated version of style.css in the files directory to be recreated using the new version of the original file.") .'</p>';
return $output;
}
}