The referenced patch works in 5.1.0a-5.1.0c and in 5.2.0.
Do not forget to set the
'audited'=>'true',
lines in vardef.php like:
PHP Code:
'account_name' =>
array (
'name' => 'account_name',
'rname' => 'name',
'id_name' => 'account_id',
'vname' => 'LBL_ACCOUNT_NAME',
'join_name'=>'accounts',
'type' => 'relate',
'link' => 'accounts',
'table' => 'accounts',
'isnull' => 'true',
'module' => 'Accounts',
'dbType' => 'varchar',
'audited'=>'true',
'len' => '255',
'source' => 'non-db',
'unified_search' => true,
),
'account_id' =>
array (
'name' => 'account_id',
'rname' => 'id',
'id_name' => 'account_id',
'vname' => 'LBL_ACCOUNT_ID',
'type' => 'relate',
'table' => 'accounts',
'isnull' => 'true',
'module' => 'Accounts',
'dbType' => 'id',
'audited'=>'true',
'reportable'=>false,
'source' => 'non-db',
'massupdate' => false,
'duplicate_merge'=> 'disabled',
'hideacl'=>true,
),
Bookmarks