Skip to content

Commit

Permalink
Fix: Removed HTML5 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Mar 18, 2012
1 parent 87bd005 commit fe9b244
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/tpl/freeproductline_create.tpl.php
Expand Up @@ -27,7 +27,7 @@

<!-- BEGIN PHP TEMPLATE freeproductline_create.tpl.php -->
<tr class="liste_titre nodrag nodrop">
<td<?php echo (! empty($conf->global->MAIN_VIEW_LINE_NUMBER) ? ' colspan="2"' : ''); ?>><a name="add"></a><?php echo $langs->trans('AddNewLine').' - '.$langs->trans("FreeZone"); ?></td>
<td<?php echo (! empty($conf->global->MAIN_VIEW_LINE_NUMBER) ? ' colspan="2"' : ''); ?>><div id="add"></div><?php echo $langs->trans('AddNewLine').' - '.$langs->trans("FreeZone"); ?></td>
<td align="right"><?php echo $langs->trans('VAT'); ?></td>
<td align="right"><?php echo $langs->trans('PriceUHT'); ?></td>
<td align="right"><?php echo $langs->trans('Qty'); ?></td>
Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/tpl/freeproductline_edit.tpl.php
Expand Up @@ -35,7 +35,7 @@

<tr <?php echo $bc[$var]; ?>>
<td<?php echo (! empty($conf->global->MAIN_VIEW_LINE_NUMBER) ? ' colspan="2"' : ''); ?>>
<a name="<?php echo $line->id; ?>"></a>
<div id="<?php echo $line->id; ?>"></div>

<?php
if (is_object($hookmanager))
Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/tpl/freeproductline_view.tpl.php
Expand Up @@ -23,7 +23,7 @@
<?php if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER)) { ?>
<td align="center"><?php echo ($i+1); ?></td>
<?php } ?>
<td><a name="<?php echo $line->rowid; ?>"></a>
<td><div id="<?php echo $line->rowid; ?>"></div>
<?php if (($line->info_bits & 2) == 2) { ?>
<a href="<?php echo DOL_URL_ROOT.'/comm/remx.php?id='.$this->socid; ?>">
<?php
Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/tpl/predefinedproductline_edit.tpl.php
Expand Up @@ -34,7 +34,7 @@

<tr <?php echo $bc[$var]; ?>>
<td<?php echo (! empty($conf->global->MAIN_VIEW_LINE_NUMBER) ? ' colspan="2"' : ''); ?>>
<a name="<?php echo $line->id; ?>"></a>
<div id="<?php echo $line->id; ?>"></div>
<input type="hidden" name="productid" value="<?php echo $line->fk_product; ?>" />
<a href="<?php echo DOL_URL_ROOT.'/product/fiche.php?id='.$line->fk_product; ?>">
<?php
Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/tpl/predefinedproductline_view.tpl.php
Expand Up @@ -23,7 +23,7 @@
<?php if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER)) { ?>
<td align="center"><?php echo ($i+1); ?></td>
<?php } ?>
<td><a name="<?php echo $line->id; ?>"></a>
<td><div id="<?php echo $line->id; ?>"></div>
<?php
echo $form->textwithtooltip($text,$description,3,'','',$i,0,($line->fk_parent_line?img_picto('', 'rightarrow'):''));

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/tpl/predefinedproductlinediv_view.tpl.php
Expand Up @@ -22,7 +22,7 @@

<div class="tr pair" <?php echo 'id="row-'.$line->id.'"'; ?>>
<div class="td firstcol">
<a name="<?php echo $line->id; ?>"></a>
<div id="<?php echo $line->id; ?>"></div>
<?php
echo $form->textwithtooltip($text,$description,3,'','',$i,0,($line->fk_parent_line?img_picto('', 'rightarrow'):''));

Expand Down
2 changes: 1 addition & 1 deletion htdocs/fichinter/tpl/linkedobjectblock.tpl.php
Expand Up @@ -29,7 +29,7 @@
print_titre($langs->trans('RelatedInterventions'));

?>
<table class="noborder" width="100%">
<table class="noborder allwidth">
<tr class="liste_titre">
<td><?php echo $langs->trans("Ref"); ?></td>
<td align="center"><?php echo $langs->trans("Date"); ?></td>
Expand Down

0 comments on commit fe9b244

Please sign in to comment.