diff options
author | Forumhulp.com <info@forumhulp.com> | 2016-07-27 00:17:47 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-09-24 10:19:12 +0200 |
commit | 97040dc6ff07595a4ba5a455c92d810bc3471e80 (patch) | |
tree | 58a11cc2ef4b9c1707ecb9c30fd45b4ba44d6265 /phpBB | |
parent | 931582aad9c041ebc9ae51d9a2664b4944a31be8 (diff) | |
download | forums-97040dc6ff07595a4ba5a455c92d810bc3471e80.tar forums-97040dc6ff07595a4ba5a455c92d810bc3471e80.tar.gz forums-97040dc6ff07595a4ba5a455c92d810bc3471e80.tar.bz2 forums-97040dc6ff07595a4ba5a455c92d810bc3471e80.tar.xz forums-97040dc6ff07595a4ba5a455c92d810bc3471e80.zip |
[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
Diffstat (limited to '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); |