Fixed table search update.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 23 May 2009 10:41:23 +0000 (10:41 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 23 May 2009 10:41:23 +0000 (10:41 +0000)
admin/view_print_transaction.php

index 98bf8d9e7ca9f188437189b4e7089bceef1f0b26..94c22416102df6f35e29af92c87de8d7991bce1c 100644 (file)
@@ -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);