Print instead of echo

This commit is contained in:
aspangaro 2014-05-11 06:49:11 +02:00
parent 3776f7b146
commit bb5d800524

View File

@ -122,17 +122,17 @@ print $langs->trans("VATReportBuildWithOptionDefinedInModule").'<br>';
print '('.$langs->trans("TaxModuleSetupToModifyRules",DOL_URL_ROOT.'/admin/taxes.php').')<br>'; print '('.$langs->trans("TaxModuleSetupToModifyRules",DOL_URL_ROOT.'/admin/taxes.php').')<br>';
print '<br>'; print '<br>';
echo '<table width="100%" class="notopnoleftnoright">'; print '<table width="100%" class="notopnoleftnoright">';
echo '<tr><td class="notopnoleft" width="50%">'; print '<tr><td class="notopnoleft" width="50%">';
print_titre($langs->trans("VATSummary")); print_titre($langs->trans("VATSummary"));
// The report mode is the one defined by defaut in tax module setup // The report mode is the one defined by defaut in tax module setup
//print $modetax; //print $modetax;
//print '('.$langs->trans("SeeVATReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modetax=0">','</a>').')'; //print '('.$langs->trans("SeeVATReportInInputOutputMode",'<a href="'.$_SERVER["PHP_SELF"].'?year='.$year_start.'&modetax=0">','</a>').')';
echo '</td><td>'; print '</td><td>';
print_titre($langs->trans("VATPaid")); print_titre($langs->trans("VATPaid"));
echo '</td></tr>'; print '</td></tr>';
echo '<tr><td class="notopnoleft" width="50%" valign="top">'; print '<tr><td class="notopnoleft" width="50%" valign="top">';
print '<table class="noborder" width="100%">'; print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">'; print '<tr class="liste_titre">';
@ -230,7 +230,7 @@ print '</tr>';
print '</table>'; print '</table>';
echo '</td>'; print '</td>';
print '<td class="notopnoleftnoright" valign="top" width="50%">'; print '<td class="notopnoleftnoright" valign="top" width="50%">';
/* /*
@ -249,8 +249,8 @@ pt($db, $sql,$langs->trans("Year")." $y");
print "</td></tr></table>"; print "</td></tr></table>";
echo '</td></tr>'; print '</td></tr>';
echo '</table>'; print '</table>';
$db->close(); $db->close();