diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/color/color.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/color/color.module b/modules/color/color.module index bdbdad550..9bb7fc069 100644 --- a/modules/color/color.module +++ b/modules/color/color.module @@ -377,7 +377,7 @@ function _color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) { // Split off the "Don't touch" section of the stylesheet. $split = "Color Module: Don't touch"; - if (strpos($split, $style) !== FALSE) { + if (strpos($style, $split) !== FALSE) { list($style, $fixed) = explode($split, $style); } |