We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af24b29 + f461ee9 commit 6eb5253Copy full SHA for 6eb5253
1 file changed
src/Table/Search.php
@@ -81,14 +81,12 @@ private function generateWhereClause(): string
81
return ' WHERE ' . $_POST['customWhereClause'];
82
}
83
84
- // If there are no search criteria set or no unary criteria operators,
85
- // return
86
if (
87
- ! isset($_POST['criteriaColumnOperators'])
88
- || (
89
- ! isset($_POST['criteriaValues'])
90
- && ! isset($_POST['criteriaColumnOperators'])
91
- && ! isset($_POST['geom_func'])
+ ! isset(
+ $_POST['criteriaColumnOperators'],
+ $_POST['criteriaValues'],
+ $_POST['criteriaColumnNames'],
+ $_POST['criteriaColumnTypes'],
92
)
93
) {
94
return '';
0 commit comments