Skip to content

Commit

Permalink
Fix: Bad parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Nov 25, 2011
1 parent ffb2dfc commit 03a6bdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/tpl/freeproductline_view.tpl.php
Expand Up @@ -51,7 +51,7 @@
}
else
{
echo ($txt?' - ':'').dol_htmlentitiesbr($line->description,1,true);
echo ($txt?' - ':'').dol_htmlentitiesbr($line->description);
}
}
}
Expand All @@ -60,7 +60,7 @@
if (! empty($line->fk_parent_line)) echo img_picto('', 'rightarrow');
if ($type==1) $text = img_object($langs->trans('Service'),'service');
else $text = img_object($langs->trans('Product'),'product');
echo $text.' '.dol_htmlentitiesbr($line->description,1,true);
echo $text.' '.dol_htmlentitiesbr($line->description);
// Show range
print_date_range($line->date_start,$line->date_end);
}
Expand Down

0 comments on commit 03a6bdd

Please sign in to comment.