1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Merge branch 'ticket/14577' into ticket/14577-3.2.x

Conflicts:
	phpBB/includes/acp/acp_modules.php
This commit is contained in:
Marc Alexander
2016-04-02 09:51:37 +02:00
5 changed files with 12 additions and 12 deletions

View File

@@ -373,7 +373,7 @@ class convertor
$val = array($val);
}
for ($j = 0; $j < sizeof($val); ++$j)
for ($j = 0, $size = sizeof($val); $j < $size; ++$j)
{
if (preg_match('/LEFT JOIN ([a-z0-9_]+) AS ([a-z0-9_]+)/i', $val[$j], $m))
{