1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-21 17:11:53 +02:00

[ticket/15665] fix double semicolon

PHPBB3-15665
This commit is contained in:
hubaishan
2018-11-20 15:56:02 +03:00
parent 717d4840e2
commit dc96e70d1b

View File

@@ -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 . ')';
}
/**