Added nowrap for date type fields in db_pager_view.inc. Problems with (-) sep.
[fa-stable.git] / includes / ui / db_pager_view.inc
index 4367dc98539a06bf1c42c692e31549773bd2b022..7fe7754ed22124b30532987de0bd9119bab6fa27 100644 (file)
@@ -104,9 +104,9 @@ function display_db_pager(&$pager) {
                    case 'time':
                          label_cell($cell, "width=40"); break;
                    case 'date':
-                         label_cell(sql2date($cell), "align='center' width=50"); break;
+                         label_cell(sql2date($cell), "align='center' nowrap"); break;
                    case 'dstamp':      // time stamp displayed as date
-                         label_cell(sql2date(substr($cell, 0, 10)), "align='center'"); break;
+                         label_cell(sql2date(substr($cell, 0, 10)), "align='center' nowrap"); break;
                    case 'tstamp':      // time stamp - FIX user format
                          label_cell(sql2date(substr($cell, 0, 10)).
                          ' '. substr($cell, 10), "align='center'"); break;
@@ -153,37 +153,6 @@ function display_db_pager(&$pager) {
                end_row();
        }
 
-       //end_table();
-       //start_table("$table_style align='center' class='navibar' width=100%");
-       /*
-       start_row("class='navibar'");
-       $colspan = count($pager->columns);
-        if($pager->rec_count) {
-               $from = ($pager->curr_page-1)*$pager->page_len+1;
-               $to = $from + $pager->page_len - 1;
-               if ($to > $pager->rec_count)
-                 $to = $pager->rec_count;
-               $all = $pager->rec_count;
-               $lcols = ($colspan > 4 ? 3 : 2);
-               label_cell(sprintf( _('Records %d-%d of %d'), $from, $to, $all),
-                       "colspan=$lcols class='navibar' style='border:none'");
-               //echo "<td colspan=".($pager->columns -.$lcols)." style='border:none'>";
-               echo "<td colspan=".($colspan-3)." style='border:none'>";
-               $but_pref = $pager->name.'_page_';
-           start_table("align='right'");
-               start_row();
-               echo navi_button_cell($but_pref.'first', _('First'), $pager->first_page, 'right');
-               echo navi_button_cell($but_pref.'prev', _('Prev'), $pager->prev_page,'right');
-               echo navi_button_cell($but_pref.'next', _('Next'), $pager->next_page,'right');
-               echo navi_button_cell($but_pref.'last', _('Last'), $pager->last_page, 'right');
-               end_row(); 
-               end_table();    
-               echo "</td>";
-       } else {
-         label_cell( _('No records'), "colspan=$colspan class='navibar'");
-       }
-       end_row();
-       */
        start_row("class='navibar'");
        $colspan = count($pager->columns);
         if($pager->rec_count) {