From: Janusz Dobrowolski Date: Sat, 23 May 2009 10:41:23 +0000 (+0000) Subject: Fixed table search update. X-Git-Tag: 2.3-final~1247 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=10bac070deaf1883d72f3cb17158dd5e6d508b3e;p=fa-stable.git Fixed table search update. --- diff --git a/admin/view_print_transaction.php b/admin/view_print_transaction.php index 98bf8d9e..94c22416 100644 --- a/admin/view_print_transaction.php +++ b/admin/view_print_transaction.php @@ -60,7 +60,7 @@ function viewing_controls() ref_cells(_("to #:"), 'ToTransNo'); - submit_cells('ProcessSearch', _("Search"), '', '', true); + submit_cells('ProcessSearch', _("Search"), '', '', 'default'); end_row(); end_table(1); @@ -82,8 +82,6 @@ function check_valid_entries() display_error(_("The ending transaction number is expected to be numeric and greater than zero.")); return false; } - if (!isset($_POST['filterType']) || $_POST['filterType'] == "") - return false; return true; } @@ -139,7 +137,7 @@ function handle_search() } $table =& new_db_pager('transactions', $sql, $cols); - if (list_updated('filterType')) { + if (list_updated('filterType') || get_post('ProcessSearch')) { $table->set_sql($sql); $table->set_columns($cols); } @@ -160,7 +158,7 @@ if (isset($_POST['ProcessSearch'])) //---------------------------------------------------------------------------------------- -start_form(false, true); +start_form(false); viewing_controls(); handle_search(); end_form(2);