Skip to content
Snippets Groups Projects
Commit f9b793b0 authored by lobo's avatar lobo
Browse files

CRM-12300

----------------------------------------
* CRM-12300: Do no log civicrm_mailing_event_* tables
  http://issues.civicrm.org/jira/browse/CRM-12300
parent 19c8dc3e
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,9 @@ AND TABLE_NAME LIKE 'civicrm_%'
$this->tables = preg_grep('/^civicrm_export_temp_/', $this->tables, PREG_GREP_INVERT);
$this->tables = preg_grep('/^civicrm_queue_/', $this->tables, PREG_GREP_INVERT);
// do not log civicrm_mailing_event* tables, CRM-12300
$this->tables = preg_grep('/^civicrm_mailing_event_/', $this->tables, PREG_GREP_INVERT);
$dsn = defined('CIVICRM_LOGGING_DSN') ? DB::parseDSN(CIVICRM_LOGGING_DSN) : DB::parseDSN(CIVICRM_DSN);
$this->db = $dsn['database'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment