diff options
author | hubaishan <saeed@hubaishan.com> | 2018-11-20 15:56:02 +0300 |
---|---|---|
committer | hubaishan <saeed@hubaishan.com> | 2018-11-20 15:56:02 +0300 |
commit | dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d (patch) | |
tree | 3d6fd42f917b22b1583ceb7c03103147fd114b6e /phpBB | |
parent | 717d4840e2deef6d07944a5574348f67fd75c1fa (diff) | |
download | forums-dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d.tar forums-dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d.tar.gz forums-dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d.tar.bz2 forums-dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d.tar.xz forums-dc96e70d1ba531fc5975aef3e7e2d7d9e9203a6d.zip |
[ticket/15665] fix double semicolon
PHPBB3-15665
Diffstat (limited to '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 . ')'; } /** |