aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/driver.php
diff options
context:
space:
mode:
authorbrunoais <brunoaiss@gmail.com>2015-02-25 09:09:48 +0000
committerbrunoais <brunoaiss@gmail.com>2015-03-16 11:14:31 +0000
commit5c1850e10e0e31e4f72cc16c657e37bb009659df (patch)
tree3d911b0d71359b773ff42b19548a272ee0497617 /phpBB/phpbb/db/driver/driver.php
parent46de94690453e0bd6dfc589682b7c4ede34f1d59 (diff)
downloadforums-5c1850e10e0e31e4f72cc16c657e37bb009659df.tar
forums-5c1850e10e0e31e4f72cc16c657e37bb009659df.tar.gz
forums-5c1850e10e0e31e4f72cc16c657e37bb009659df.tar.bz2
forums-5c1850e10e0e31e4f72cc16c657e37bb009659df.tar.xz
forums-5c1850e10e0e31e4f72cc16c657e37bb009659df.zip
[feature/sql-bool-builder] AS keyword must be lowercase;
AS keyword must be lowercase; expected "as" but found "AS" PHPBB3-13652
Diffstat (limited to 'phpBB/phpbb/db/driver/driver.php')
-rw-r--r--phpBB/phpbb/db/driver/driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/driver/driver.php b/phpBB/phpbb/db/driver/driver.php
index 0fbbe5ae7c..f66f10322b 100644
--- a/phpBB/phpbb/db/driver/driver.php
+++ b/phpBB/phpbb/db/driver/driver.php
@@ -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])
{