From b86df33b8cd670fd230f2e13cc0a8098de449eb7 Mon Sep 17 00:00:00 2001
From: Neil Drumm <drumm@3064.no-reply.drupal.org>
Date: Sat, 25 Nov 2006 08:58:35 +0000
Subject: [PATCH] #97941 by havran. Remove a trailing slash which confuses
 certain versions of PHP.

---
 modules/color/color.module | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/color/color.module b/modules/color/color.module
index 58b2c925de24..dfdbce101b06 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -211,12 +211,13 @@ function color_scheme_form_submit($form_id, $values) {
   // Prepare target locations for generated files
   $id = $theme .'-'. substr(md5(serialize($palette) . microtime()), 0, 8);
   $paths['color'] = variable_get('file_directory_path', 'files') .'/color';
-  $paths['target'] = $paths['color'] .'/'. $id .'/';
+  $paths['target'] = $paths['color'] .'/'. $id;
   foreach ($paths as $path) {
     if (!is_dir($path)) {
       mkdir($path);
     }
   }
+  $paths['target'] = $paths['target'] .'/';
   $paths['id'] = $id;
   $paths['source'] = drupal_get_path('theme', $theme) .'/';
   $paths['stylesheet'] = $paths['target'] .'style.css';
-- 
GitLab