Hi
you can edit the file vardefs.php - e.g. modules/Contacts/vardefs.php - and add an entry 'audited' => true for each field you would like to have audited.
E.g. to get the fax field audited, change
Code:
'phone_fax' =>
array (
'name' => 'phone_fax',
'vname' => 'LBL_FAX_PHONE',
'type' => 'phone',
'dbType' => 'varchar',
'len' => '25',
'unified_search' => true,
'comment' => 'Contact fax number',
'merge_filter' => 'enabled',
), to
Code:
'phone_fax' =>
array (
'name' => 'phone_fax',
'vname' => 'LBL_FAX_PHONE',
'type' => 'phone',
'dbType' => 'varchar',
'len' => '25',
'unified_search' => true,
'audited' => true,
'comment' => 'Contact fax number',
'merge_filter' => 'enabled',
),
Bookmarks