mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Record share emails in history log & display them instead of user when set
This commit is contained in:
@ -422,4 +422,19 @@ function api_upgrade17_1()
|
||||
));
|
||||
|
||||
return $GLOBALS['setup_info']['api']['currentver'] = '17.1.001';
|
||||
}
|
||||
|
||||
/**
|
||||
* Add field to history log for share email address, if available
|
||||
*/
|
||||
function api_upgrade17_1_001()
|
||||
{
|
||||
$GLOBALS['egw_setup']->oProc->AddColumn('egw_history_log','share_email',array(
|
||||
'type' => 'varchar',
|
||||
'precision' => '4096',
|
||||
'default' => NULL,
|
||||
'nullable' => True,
|
||||
'comment' => 'email addresses of share who made the change, comma seperated'
|
||||
));
|
||||
return $GLOBALS['setup_info']['api']['currentver'] = '17.1.002';
|
||||
}
|
Reference in New Issue
Block a user