diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-09-24 11:50:15 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-09-24 11:50:15 +0200 |
commit | 4267cc3a434a4431f5c42e98edd9d73b35a58095 (patch) | |
tree | 07e5488d7afd6cee1b71c50b8094a65858aa1772 /phpBB/phpbb | |
parent | cdd56c050512dc582314670b8784b2051fb86f99 (diff) | |
parent | 97040dc6ff07595a4ba5a455c92d810bc3471e80 (diff) | |
download | forums-4267cc3a434a4431f5c42e98edd9d73b35a58095.tar forums-4267cc3a434a4431f5c42e98edd9d73b35a58095.tar.gz forums-4267cc3a434a4431f5c42e98edd9d73b35a58095.tar.bz2 forums-4267cc3a434a4431f5c42e98edd9d73b35a58095.tar.xz forums-4267cc3a434a4431f5c42e98edd9d73b35a58095.zip |
Merge pull request #4462 from marc1706/ticket/14796
[ticket/14796] Use log_table class member instead of table constant
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/log/log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php index d46e3d1f3f..094ff78abe 100644 --- a/phpBB/phpbb/log/log.php +++ b/phpBB/phpbb/log/log.php @@ -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); |