1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 03:54:56 +02:00

[feature/sql-bool-builder] AS keyword must be lowercase;

AS keyword must be lowercase; expected "as" but found "AS"

PHPBB3-13652
This commit is contained in:
brunoais 2015-02-25 09:09:48 +00:00
parent 46de946904
commit 5c1850e10e

View File

@ -819,7 +819,7 @@ abstract class driver implements driver_interface
{
$operation = array_shift($operations_ary);
foreach ($operations_ary AS &$condition)
foreach ($operations_ary as &$condition)
{
switch ($condition[0])
{