1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-11 00:40:56 +02: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

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"; $sql_where";
$this->db->sql_query($sql); $this->db->sql_query($sql);