diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-04 10:03:07 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-04 10:03:07 -0400 |
commit | 8e59ee61f71c54dc187dc6542e7c92a11126be47 (patch) | |
tree | 00eb6e12651f924ff5af6e59f0430139b78515db /lib/profilesection.php | |
parent | 39c420b51fb57f98780d583efaaaebd79de12db9 (diff) | |
parent | 0155d02cecae565e0709a7bd0c8d1b62dd80d9bc (diff) |
Merge commit 'jeff-themovie/0.8.x-profile-value' into 0.8.x
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); } |