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":
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>)
$datastart = '<table style="width:100%;">' .
$datastart = '<table style="width:100%;" class="databox data">' .
'<tr>' .
'<th>' . __('Agent') . '</th>' .
'<th>' . __('Module') . '</th>' .
'<th>' . __('Data') . '</th>' .
'<th>' .__('Timestamp') . '</th>' .
'</tr>';
$rowstart = '<tr><td style="text-align: center">';
$divider = '</td><td style="text-align: center">';
$rowstart = '<tr><td>';
$divider = '</td><td>';
$rowend = '</td></tr>';
$dataend = '</table>';
break;