aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/postgres.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/db/postgres.php')
-rw-r--r--phpBB/includes/db/postgres.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php
index a27fbb9d9f..9da2fd0b40 100644
--- a/phpBB/includes/db/postgres.php
+++ b/phpBB/includes/db/postgres.php
@@ -169,9 +169,9 @@ class dbal_postgres extends dbal
/**
* {@inheritDoc}
*/
- function sql_concatenate($string1, $string2)
+ function sql_concatenate($expr1, $expr2)
{
- return $string1 . ' || ' . $string2;
+ return $expr1 . ' || ' . $expr2;
}
/**