1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/10942] Change term string to expression to avoid confusion

PHPBB3-10942
This commit is contained in:
Joas Schilling
2012-06-20 12:50:12 +02:00
parent c8e322d88f
commit 79dfdf9406
7 changed files with 17 additions and 17 deletions

View File

@@ -272,9 +272,9 @@ class dbal_mssqlnative extends dbal
/**
* {@inheritDoc}
*/
function sql_concatenate($string1, $string2)
function sql_concatenate($expr1, $expr2)
{
return $string1 . ' + ' . $string2;
return $expr1 . ' + ' . $expr2;
}
/**