aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-10 19:04:37 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-10 19:04:37 +0200
commit164f52c3f30d6afd85e1f25cea7ebc75f327d12d (patch)
treec9e6ef863ca9376a327e197bfb656c577a7c1d0c
parent56aaba696f01a920713a08f0b418604609505d83 (diff)
downloadforums-164f52c3f30d6afd85e1f25cea7ebc75f327d12d.tar
forums-164f52c3f30d6afd85e1f25cea7ebc75f327d12d.tar.gz
forums-164f52c3f30d6afd85e1f25cea7ebc75f327d12d.tar.bz2
forums-164f52c3f30d6afd85e1f25cea7ebc75f327d12d.tar.xz
forums-164f52c3f30d6afd85e1f25cea7ebc75f327d12d.zip
[ticket/10899] Remove extra ';'
PHPBB3-10899
-rw-r--r--phpBB/phpbb/log/log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php
index a0d399ccee..4b1a8e40ad 100644
--- a/phpBB/phpbb/log/log.php
+++ b/phpBB/phpbb/log/log.php
@@ -360,7 +360,7 @@ class log implements \phpbb\log\log_interface
}
else if (is_array($field_value) && sizeof($field_value) > 2)
{
- $sql_where .= $this->db->sql_in_set($field, $field_value);;
+ $sql_where .= $this->db->sql_in_set($field, $field_value);
}
else
{