diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-05 19:01:15 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-05 19:01:15 +0000 |
commit | 3ebbc1c3886a67dcc83ca4f906bdd375d599e86b (patch) | |
tree | c86e6084b49cacdf84ff0eb4527d6f4aeabd3f4f /classes | |
parent | cd71f9cc51f77b6b8e3b11c34cb7523f36339cea (diff) | |
parent | c3a522623c3a0628c33407ee01b16e189c44bba5 (diff) |
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Design.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/Design.php b/classes/Design.php index 43544f1c9..9354bfcda 100644 --- a/classes/Design.php +++ b/classes/Design.php @@ -107,7 +107,7 @@ class Design extends Memcached_DataObject static function toWebColor($color) { - if (is_null($color)) { + if ($color == null) { return null; } @@ -115,7 +115,7 @@ class Design extends Memcached_DataObject return new WebColor($color); } catch (WebColorException $e) { // This shouldn't happen - common_log(LOG_ERR, "Unable to create color for design $id.", + common_log(LOG_ERR, "Unable to create web color for $color", __FILE__); return null; } |