From aa9fcb91846135014eaeb2c14d4069e60b56d65f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 10 Aug 2009 16:42:21 -0400 Subject: Revert "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 reverts commit 5ba46186b7dd179253023426f6d7cdbbee67ad98. --- classes/Design.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/classes/Design.php b/classes/Design.php index de3a526f7..dc1712aff 100644 --- a/classes/Design.php +++ b/classes/Design.php @@ -204,10 +204,7 @@ class Design extends Memcached_DataObject 'disposition'); foreach ($attrs as $attr) { - $val = common_config('design', $attr); - if ($val !== false) { - $siteDesign->$attr = $val; - } + $siteDesign->$attr = common_config('design', $attr); } } -- cgit v1.2.3-54-g00ecf