diff options
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/driver/mssql_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/driver/mssql_base.php b/phpBB/phpbb/db/driver/mssql_base.php index 1f6931e83a..98d16ca7fc 100644 --- a/phpBB/phpbb/db/driver/mssql_base.php +++ b/phpBB/phpbb/db/driver/mssql_base.php @@ -65,7 +65,7 @@ abstract class mssql_base extends \phpbb\db\driver\driver */ function cast_expr_to_bigint($expression) { - return 'CONVERT(BIGINT, ' . $expression . ')';; + return 'CONVERT(BIGINT, ' . $expression . ')'; } /** |