It is a bug (#23411 to be exact) and the fix seems to be to edit the modules/Notes/Vardefs.php file and change
PHP Code:
'contact_name'=>
array(
'name'=>'contact_name',
'rname'=>'last_name',
'id_name'=>'contact_id',
'vname'=>'LBL_CONTACT_NAME',
'type'=>'relate',
'link'=>'contact',
'join_name'=>'contacts',
'isnull'=>'true',
'module'=>'Contacts',
'source'=>'non-db',
),
to this
PHP Code:
'contact_name'=>
array(
'name'=>'contact_name',
'rname'=>'last_name',
'id_name'=>'contact_id',
'vname'=>'LBL_CONTACT_NAME',
'type'=>'relate',
'link'=>'contact',
'join_name'=>'contacts',
'isnull'=>'true',
'module'=>'Contacts',
'source'=>'non-db',
'db_concat_fields' => array(
0 => 'first_name',
1 => 'last_name'
),
),
Bookmarks