Closed (fixed)
Project:
DesignKit
Version:
6.x-1.0-alpha5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Mar 2010 at 14:46 UTC
Updated:
26 Aug 2010 at 20:10 UTC
Hi,
In the colors description fieldset, the module states 'Enter an RGB hexidecimal value like #ffffff. Leave blank to use default colors.'. However, when you empty the field and save, the default value does not appear. I believe line 71 in designkit.admin.inc should be changed from
if (isset($color[$name])){
to:
if (isset($color[$name]) && designkit_valid_color($color[$name])) {
Makes sence?
Comments
Comment #1
yhahn commentedThanks, committed: http://drupal.org/cvs?commit=406310