diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-31 19:45:29 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-31 19:45:29 +0100 |
| commit | a6d77d28625efe86fe16228cbfdce49d6a5bf6e2 (patch) | |
| tree | a86423579777e3ae899bdd8a78e232789c5e7c38 /includes | |
| parent | 73ab0d88e8235556d55b9deb453ae7b74b763436 (diff) | |
| download | contact-a6d77d28625efe86fe16228cbfdce49d6a5bf6e2.tar.gz contact-a6d77d28625efe86fe16228cbfdce49d6a5bf6e2.tar.bz2 contact-a6d77d28625efe86fe16228cbfdce49d6a5bf6e2.zip | |
Add add_person/add_business flows; tidy contact view/edit for type
- add_person.php + add_person.tpl: minimal form, auto-injects $00
- add_business.php + add_business.tpl: org name + $02+ type checkboxes
- menu_contact.tpl: replace generic edit link with Add Person / Add Business
- Contact.php: fix title overwrite (org no longer clobbers person name);
fix null trim on organisation; fix $00 type xref stored correctly
- edit.php: isPerson flag; xref groups loaded; type list filtered $02+ for businesses
- edit.tpl: person/business field visibility; tabbed xref block at bottom of Details tab
- edit_type_header.tpl: value fixed to {$type.item}; $00/$01 filtered out
- display_contact.tpl: person/business field selection; note above addresses;
no-addresses fallback removed; allow_edit=false on xref tabs
- display_type_header.tpl: heading Personal/Business Contact; $02+ types only
- contact_date_bar.tpl: remove Add crossref shortcut (now in edit tabs)
- view_xref_*_item.tpl: dates and edit actions gated on $xrefAllowEdit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'includes')
| -rwxr-xr-x | includes/classes/Contact.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/classes/Contact.php b/includes/classes/Contact.php index bb48666..41a7fbb 100755 --- a/includes/classes/Contact.php +++ b/includes/classes/Contact.php @@ -169,7 +169,9 @@ class Contact extends LibertyContent { else if ( strlen($pParamHash['forename']) > 0 ) $pParamHash['title'] .= ', '.$pParamHash['forename']; } } - $pParamHash['title'] = $pParamHash['organisation']; + if( empty( $pParamHash['title'] ) ) { + $pParamHash['title'] = $pParamHash['organisation'] ?? ''; + } $pParamHash['title'] = trim( $pParamHash['title'] ); $pParamHash['contact_store']['xkey'] = $pParamHash['xkey']; return count( $this->mErrors ) == 0; |
