do not save event_guard logs to transactions (#7254)
Event Guard already has a log table so no need to duplicate the transactions in another table
This commit is contained in:
parent
0a5c377ae6
commit
0cf387f306
|
|
@ -233,7 +233,7 @@
|
||||||
$p->add('event_guard_log_edit', 'temp');
|
$p->add('event_guard_log_edit', 'temp');
|
||||||
$database->app_name = 'event guard';
|
$database->app_name = 'event guard';
|
||||||
$database->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637';
|
$database->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637';
|
||||||
$database->save($array);
|
$database->save($array, false);
|
||||||
//$message = $database->message;
|
//$message = $database->message;
|
||||||
$p->delete('event_guard_log_edit', 'temp');
|
$p->delete('event_guard_log_edit', 'temp');
|
||||||
unset($array);
|
unset($array);
|
||||||
|
|
@ -353,7 +353,7 @@
|
||||||
$p->add('event_guard_log_add', 'temp');
|
$p->add('event_guard_log_add', 'temp');
|
||||||
$database->app_name = 'event guard';
|
$database->app_name = 'event guard';
|
||||||
$database->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637';
|
$database->app_uuid = 'c5b86612-1514-40cb-8e2c-3f01a8f6f637';
|
||||||
$database->save($array);
|
$database->save($array, false);
|
||||||
$p->delete('event_guard_log_add', 'temp');
|
$p->delete('event_guard_log_add', 'temp');
|
||||||
|
|
||||||
//send debug information to the console
|
//send debug information to the console
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue