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 /lib/profilesection.php | |
parent | cd71f9cc51f77b6b8e3b11c34cb7523f36339cea (diff) | |
parent | c3a522623c3a0628c33407ee01b16e189c44bba5 (diff) |
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'lib/profilesection.php')
-rw-r--r-- | lib/profilesection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/profilesection.php b/lib/profilesection.php index 9ff243fb5..d463a07b0 100644 --- a/lib/profilesection.php +++ b/lib/profilesection.php @@ -97,7 +97,7 @@ class ProfileSection extends Section $this->out->elementEnd('a'); $this->out->elementEnd('span'); $this->out->elementEnd('td'); - if ($profile->value) { + if (isset($profile->value)) { $this->out->element('td', 'value', $profile->value); } |