summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-08-04 10:03:07 -0400
committerCraig Andrews <candrews@integralblue.com>2009-08-04 10:03:07 -0400
commit8e59ee61f71c54dc187dc6542e7c92a11126be47 (patch)
tree00eb6e12651f924ff5af6e59f0430139b78515db
parent39c420b51fb57f98780d583efaaaebd79de12db9 (diff)
parent0155d02cecae565e0709a7bd0c8d1b62dd80d9bc (diff)
Merge commit 'jeff-themovie/0.8.x-profile-value' into 0.8.x
-rw-r--r--lib/profilesection.php2
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);
}