Skip to content

Commit

Permalink
Merge pull request #62 from schlessera/fix/trailing-comma
Browse files Browse the repository at this point in the history
Remove trailing comma in function call
  • Loading branch information
swissspidy authored Dec 18, 2023
2 parents 2a5ec27 + 982216d commit a42c1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-includes/sqlite/class-wp-sqlite-translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ public function query( $statement, $mode = PDO::FETCH_OBJ, ...$fetch_mode_args )
$this->table_name,
$this->insert_columns,
$this->last_insert_id,
$this->affected_rows,
$this->affected_rows
);

// Commit the nested transaction.
Expand Down

0 comments on commit a42c1b3

Please sign in to comment.