aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/postgres.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-06-20 12:50:12 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-06-20 12:50:12 +0200
commit79dfdf94063cf7cc64197e50807977acaf9a2e66 (patch)
tree86b68e0a2920e06cbd46ec4f17c63eaac38ccf4e /phpBB/includes/db/postgres.php
parentc8e322d88f8195727c18eac90d30a5919e6fb8a0 (diff)
downloadforums-79dfdf94063cf7cc64197e50807977acaf9a2e66.tar
forums-79dfdf94063cf7cc64197e50807977acaf9a2e66.tar.gz
forums-79dfdf94063cf7cc64197e50807977acaf9a2e66.tar.bz2
forums-79dfdf94063cf7cc64197e50807977acaf9a2e66.tar.xz
forums-79dfdf94063cf7cc64197e50807977acaf9a2e66.zip
[ticket/10942] Change term string to expression to avoid confusion
PHPBB3-10942
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;
}
/**