### Eclipse Workspace Patch 1.0 #P drupal-head Index: modules/color/color.module =================================================================== RCS file: /cvs/drupal/drupal/modules/color/color.module,v retrieving revision 1.15 diff -u -r1.15 color.module --- modules/color/color.module 20 Jan 2007 08:12:20 -0000 1.15 +++ modules/color/color.module 31 Jan 2007 16:56:33 -0000 @@ -228,7 +228,7 @@ // 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['color'] = file_directory_path() . '/color'; $paths['target'] = $paths['color'] .'/'. $id; foreach ($paths as $path) { if (!is_dir($path)) { Index: includes/file.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/file.inc,v retrieving revision 1.93 diff -u -r1.93 file.inc --- includes/file.inc 31 Jan 2007 15:49:22 -0000 1.93 +++ includes/file.inc 31 Jan 2007 16:56:22 -0000 @@ -712,7 +712,7 @@ * @return A string containing the path to Drupal's 'files' directory. */ function file_directory_path() { - return variable_get('file_directory_path', 'files'); + return variable_get('file_directory_path', conf_path().'/files'); } /**