mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/14796] Use log_table class member instead of table constant
Was still using the old LOG_TABLE constant in the delete method. PHPBB3-14796
This commit is contained in:
parent
931582aad9
commit
97040dc6ff
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ class log implements \phpbb\log\log_interface
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'DELETE FROM ' . LOG_TABLE . "
|
$sql = 'DELETE FROM ' . $this->log_table . "
|
||||||
$sql_where";
|
$sql_where";
|
||||||
$this->db->sql_query($sql);
|
$this->db->sql_query($sql);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue