1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01: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:
Forumhulp.com 2016-07-27 00:17:47 +02:00 committed by Marc Alexander
parent 931582aad9
commit 97040dc6ff
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -402,7 +402,7 @@ class log implements \phpbb\log\log_interface
}
}
$sql = 'DELETE FROM ' . LOG_TABLE . "
$sql = 'DELETE FROM ' . $this->log_table . "
$sql_where";
$this->db->sql_query($sql);