aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/firebird.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/firebird.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/firebird.php')
-rw-r--r--phpBB/includes/db/firebird.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/firebird.php
index 884206d298..d6b16d0342 100644
--- a/phpBB/includes/db/firebird.php
+++ b/phpBB/includes/db/firebird.php
@@ -113,9 +113,9 @@ class dbal_firebird extends dbal
/**
* {@inheritDoc}
*/
- function sql_concatenate($string1, $string2)
+ function sql_concatenate($expr1, $expr2)
{
- return $string1 . ' || ' . $string2;
+ return $expr1 . ' || ' . $expr2;
}
/**