diff --git a/modules/color/color.module b/modules/color/color.module
index bdbdad550b28326c7f6cdc97e7e5fd6a2a160cea..9bb7fc069dcace3ec1aef360b831ae36efbd7fdf 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);
   }