Skip to content

Commit 615e96e

Browse files
authored
Remove trailing comma from the arguments list
1 parent 78f650d commit 615e96e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wp-includes/sqlite-ast/class-wp-pdo-mysql-on-sqlite.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3149,7 +3149,7 @@ private function execute_describe_statement( WP_Parser_Node $node ): void {
31493149
WHERE table_schema = ?
31503150
AND table_name = ?
31513151
ORDER BY ordinal_position',
3152-
$this->quote_sqlite_identifier( $columns_table ),
3152+
$this->quote_sqlite_identifier( $columns_table )
31533153
);
31543154
$params = array(
31553155
$this->get_saved_db_name( $database ),

0 commit comments

Comments
 (0)