4
0

Fixed PHP Notice "Undefined property: Profile::$value"

Esse commit está contido em:
Jeffery To 2009-08-04 18:45:11 +08:00
commit 0155d02cec

Ver arquivo

@ -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);
}