Skip to content

Commit

Permalink
Merge pull request #148 from skipperbent/v4-development
Browse files Browse the repository at this point in the history
Version 4.15.5
  • Loading branch information
skipperbent authored Feb 16, 2023
2 parents 3058234 + 0b07588 commit e84465f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Pecee/Pixie/QueryBuilder/Adapters/BaseAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,11 @@ public function wrapSanitizer($value)
return $value;
}

// If first character contains " - skip sanitation
if ($value[0] === '"') {
return $value;
}

// Separate our table and fields which are joined with a ".", like my_table.id
$valueArr = explode('.', $value, 2);

Expand Down

0 comments on commit e84465f

Please sign in to comment.