X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fdb_pager_view.inc;h=e8718c636deaecff11ab7472df32d85ec57b75fc;hb=e39de7da91ecfd75c09a8537b4d5192e690687e7;hp=4bc49948dc312bae82ff99a40624a22f793bd908;hpb=ebc600101ceab69c06eac4b1bd4d1782af45de05;p=fa-stable.git diff --git a/includes/ui/db_pager_view.inc b/includes/ui/db_pager_view.inc index 4bc49948..e8718c63 100644 --- a/includes/ui/db_pager_view.inc +++ b/includes/ui/db_pager_view.inc @@ -40,7 +40,7 @@ function navi_button_cell($name, $value, $enabled=true, $align='left') { // Sql paged table view. Call this function inside form. // function display_db_pager(&$pager) { - global $table_style, $use_popup_windows, $use_date_picker, $path_to_root; + global $use_popup_windows, $use_date_picker, $path_to_root; $pager->select_records(); @@ -61,7 +61,7 @@ function display_db_pager(&$pager) { } } /* show a table of records returned by the sql */ - start_table("$table_style width=$pager->width"); + start_table(TABLESTYLE, "width=$pager->width"); table_header($headers); if($pager->header_fun) { // if set header handler @@ -162,7 +162,7 @@ function display_db_pager(&$pager) { start_row("class='navibar'"); $colspan = count($pager->columns); - $inact = $pager->inactive_ctrl==true + $inact = @$pager->inactive_ctrl==true ? ' '.checkbox(null, 'show_inactive', null, true). _("Show also Inactive") : ''; if($pager->rec_count) { echo ""; @@ -170,7 +170,7 @@ function display_db_pager(&$pager) { $but_pref = $pager->name.'_page_'; start_table(); start_row(); - if ($pager->inactive_ctrl) + if (@$pager->inactive_ctrl) submit('Update', _('Update'), true, '', null); // inactive update echo navi_button_cell($but_pref.'first', _('First'), $pager->first_page, 'right'); echo navi_button_cell($but_pref.'prev', _('Prev'), $pager->prev_page,'right');