mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00: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:
parent
46de946904
commit
5c1850e10e
1 changed files with 1 additions and 1 deletions
|
@ -819,7 +819,7 @@ abstract class driver implements driver_interface
|
||||||
{
|
{
|
||||||
$operation = array_shift($operations_ary);
|
$operation = array_shift($operations_ary);
|
||||||
|
|
||||||
foreach ($operations_ary AS &$condition)
|
foreach ($operations_ary as &$condition)
|
||||||
{
|
{
|
||||||
switch ($condition[0])
|
switch ($condition[0])
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue