[fix/code_sniffer] Fix code_sniffer complaints

This commit is contained in:
Marc Alexander
2013-11-03 15:31:38 +01:00
parent 404fad65b5
commit 2d87dc449c
7 changed files with 18 additions and 18 deletions

View File

@@ -342,7 +342,7 @@ class phpbb_trim_message_bbcodes
for ($i = 1; $i <= $this->array_size; $i++)
{
if (($this->bbcode_list[$this->array_size - $i]['open_start'] < $position) &&
($this->bbcode_list[$this->array_size - $i]['close_start'] >= $position))
($this->bbcode_list[$this->array_size - $i]['close_start'] >= $position))
{
$bbcodes[] = $this->bbcode_list[$this->array_size - $i]['bbcode_tag'];
}