Skip to content

Commit

Permalink
fixed codes search pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
shachar058 committed Jun 28, 2018
1 parent 117a9a0 commit 409d423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interface/patient_file/encounter/find_code_dynamic_ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ function genFieldIdString($row)
//
$out = array(
"sEcho" => intval($_GET['sEcho']),
"iTotalRecords" => $iTotal,
"iTotalDisplayRecords" => $iFilteredTotal,
"iTotalRecords" => ($iTotal) ? $iTotal : 0,
"iTotalDisplayRecords" => ($iFilteredTotal) ? $iFilteredTotal : 0,
"aaData" => array()
);

Expand Down

0 comments on commit 409d423

Please sign in to comment.