diff --git a/htdocs/product/reassort.php b/htdocs/product/reassort.php
index 22c475ab337..bfe12d7efe2 100644
--- a/htdocs/product/reassort.php
+++ b/htdocs/product/reassort.php
@@ -465,7 +465,7 @@ if ($resql) {
print $product->getNomUrl(1, '', 16);
//if ($objp->stock_theorique < $objp->seuil_stock_alerte) print ' '.img_warning($langs->trans("StockTooLow"));
print '';
- print '
'.$product->label.' | ';
+ print ''.dol_escape_htmltag($product->label).' | ';
if (isModEnabled("service") && $type == 1) {
print '';
@@ -502,7 +502,7 @@ if ($resql) {
if ($nb_warehouse > 1) {
foreach ($warehouses_list as &$wh) {
print ' | ';
- print price(empty($product->stock_warehouse[$wh['id']]->real) ? 0 : $product->stock_warehouse[$wh['id']]->real, 0, $langs, 1, 0);
+ print price(empty($product->stock_warehouse[$wh['id']]->real) ? 0 : price2num($product->stock_warehouse[$wh['id']]->real, 'MS'), 0, $langs, 1, 0);
print ' | ';
}
}
@@ -523,7 +523,7 @@ if ($resql) {
if (!empty($conf->global->PRODUCT_USE_UNITS)) {
print ''.dol_escape_htmltag($objp->unit_short).' | ';
}
- print '';
+ print ' | ';
print img_picto($langs->trans("StockMovement"), 'movement', 'class="pictofixedwidth"');
print ''.$langs->trans("Movements").'';
print ' | ';