Fixed style

This commit is contained in:
m-lopez-f 2015-09-29 13:14:55 +02:00
parent 8a8515ecbc
commit 417d43118c
1 changed files with 3 additions and 3 deletions

View File

@ -91,15 +91,15 @@ if (!empty ($export_btn) && !empty ($module)) {
case "avg": case "avg":
default: default:
//HTML output - don't style or use XHTML just in case somebody needs to copy/paste it. (Office doesn't handle <thead> and <tbody>) //HTML output - don't style or use XHTML just in case somebody needs to copy/paste it. (Office doesn't handle <thead> and <tbody>)
$datastart = '<table style="width:100%;">' . $datastart = '<table style="width:100%;" class="databox data">' .
'<tr>' . '<tr>' .
'<th>' . __('Agent') . '</th>' . '<th>' . __('Agent') . '</th>' .
'<th>' . __('Module') . '</th>' . '<th>' . __('Module') . '</th>' .
'<th>' . __('Data') . '</th>' . '<th>' . __('Data') . '</th>' .
'<th>' .__('Timestamp') . '</th>' . '<th>' .__('Timestamp') . '</th>' .
'</tr>'; '</tr>';
$rowstart = '<tr><td style="text-align: center">'; $rowstart = '<tr><td>';
$divider = '</td><td style="text-align: center">'; $divider = '</td><td>';
$rowend = '</td></tr>'; $rowend = '</td></tr>';
$dataend = '</table>'; $dataend = '</table>';
break; break;