Skip to content

Commit e84465f

Browse files
authored
Merge pull request #148 from skipperbent/v4-development
Version 4.15.5
2 parents 3058234 + 0b07588 commit e84465f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Pecee/Pixie/QueryBuilder/Adapters/BaseAdapter.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,11 @@ public function wrapSanitizer($value)
785785
return $value;
786786
}
787787

788+
// If first character contains " - skip sanitation
789+
if ($value[0] === '"') {
790+
return $value;
791+
}
792+
788793
// Separate our table and fields which are joined with a ".", like my_table.id
789794
$valueArr = explode('.', $value, 2);
790795

0 commit comments

Comments
 (0)