Index: modules/color/color.module =================================================================== RCS file: /cvs/drupal/drupal/modules/color/color.module,v retrieving revision 1.6 diff -u -r1.6 color.module --- modules/color/color.module 7 Nov 2006 12:11:37 -0000 1.6 +++ modules/color/color.module 8 Nov 2006 20:25:43 -0000 @@ -6,7 +6,8 @@ */ function color_form_alter($form_id, &$form) { // Insert the color changer into the theme settings page. - if ($form_id == 'system_theme_settings' && color_get_info(arg(4)) && function_exists('gd_info')) { + // TODO: Last condition in the following if disables color changer when private files are used this should be solved in a different way. Some info in issue #92059. + if ($form_id == 'system_theme_settings' && color_get_info(arg(4)) && function_exists('gd_info') && variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PUBLIC) { $form['color'] = array( '#type' => 'fieldset', '#title' => t('Color scheme'),