Skip to content

Commit

Permalink
Merge pull request #301 from bowphp/feat/http-uploaded
Browse files Browse the repository at this point in the history
fix: data secure
  • Loading branch information
papac authored Dec 17, 2024
2 parents 2652b85 + 9ed4120 commit 9391ffa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Database/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -878,9 +878,10 @@ public function get(array $columns = []): array|object|null
$this->bind($statement, $this->where_data_binding);

$this->where_data_binding = [];

$statement->execute();

$data = Sanitize::make($statement->fetchAll());
$data = $statement->fetchAll();

$statement->closeCursor();

Expand Down

0 comments on commit 9391ffa

Please sign in to comment.