Some correct html

This commit is contained in:
frederic34 2014-12-09 23:37:04 +01:00
parent 6b4d7b973b
commit 608f4a7d7d
3 changed files with 5 additions and 5 deletions

View File

@ -72,8 +72,8 @@ class printing_printgcp extends PrintingDriver
global $bc, $conf, $langs;
$langs->load('printgcp');
$var=true;
$html = '<table width="100%" class="noborder">';
$html.= '<tr class="liste_titre">';
$html = '<tr class="liste_titre">';
$html.= '<td>'.$langs->trans('GCP_Name').'</td>';
$html.= '<td>'.$langs->trans('GCP_displayName').'</td>';
$html.= '<td>'.$langs->trans('GCP_Id').'</td>';

View File

@ -131,8 +131,8 @@ class printing_printipp extends PrintingDriver
{
global $bc, $conf, $langs;
$var=true;
$html = '<table width="100%" class="noborder">';
$html.= '<tr class="liste_titre">';
$html = '<tr class="liste_titre">';
$html.= '<td>'.$langs->trans('IPP_Uri').'</td>';
$html.= '<td>'.$langs->trans('IPP_Name').'</td>';
$html.= '<td>'.$langs->trans('IPP_State').'</td>';

View File

@ -208,7 +208,7 @@ if ($mode == 'test' && $user->admin)
print $langs->trans('PrintTestDesc'.$driver)."<br><br>\n";
print '<table class="nobordernopadding" width="100%">';
print '<table class="noborder" width="100%">';
if (! empty($driver)) {
require_once DOL_DOCUMENT_ROOT.'/core/modules/printing/'.$driver.'.modules.php';
$classname = 'printing_'.$driver;