common_config returns false if the config value is not set. Design::toWebColor checks with is_null. Hence the common_config value should be adjusted.

This commit is contained in:
Adrian Lang 2009-08-10 15:01:00 +02:00 committed by Evan Prodromou
parent 77037b3cc3
commit bbf10e5bdf
1 changed files with 4 additions and 1 deletions

View File

@ -204,7 +204,10 @@ class Design extends Memcached_DataObject
'disposition');
foreach ($attrs as $attr) {
$siteDesign->$attr = common_config('design', $attr);
$val = common_config('design', $attr);
if ($val !== false) {
$siteDesign->$attr = $val;
}
}
}