Skip to content

Commit

Permalink
Dynamic Finder AJAX Fix (#5629)
Browse files Browse the repository at this point in the history
* Dynamic Finder AJAX Fix

* update 1

* update 2

* update 3

* update 4
  • Loading branch information
psoas committed Jul 26, 2022
1 parent beef1ff commit e854a3d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions interface/main/finder/dynamic_finder_ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@
if ($searchAny) {
$_GET['sSearch'] = $searchAny;
$layoutCols = sqlStatement(
"SELECT field_id FROM layout_options WHERE form_id = 'DEM' AND field_id not like ? AND uor !=0",
array('em\_%')
"SELECT field_id FROM layout_options WHERE form_id = 'DEM'
AND field_id not like ? AND field_id not like ? AND uor !=0",
array('em\_%', 'add%')
);
for ($iter = 0; $row = sqlFetchArray($layoutCols); $iter++) {
$aColumns[] = $row['field_id'];
Expand Down

0 comments on commit e854a3d

Please sign in to comment.