Extended profile - don't show empty company entry in view

This commit is contained in:
Zach Copley 2011-03-16 01:26:53 -07:00
parent 17afe06805
commit 82023d388a
1 changed files with 21 additions and 18 deletions

View File

@ -313,6 +313,8 @@ class ExtendedProfileWidget extends Form
{
$this->out->elementStart('div', 'experience-item');
$this->out->element('div', 'label', _m('Company'));
if (!empty($field['company'])) {
$this->out->element('div', 'field', $field['company']);
$this->out->element('div', 'label', _m('Start'));
@ -337,6 +339,7 @@ class ExtendedProfileWidget extends Form
'(' . _m('Current') . ')'
);
}
}
$this->out->elementEnd('div');
}