diff --git a/htdocs/product/reassort.php b/htdocs/product/reassort.php
index f3c354b88a4..b0f6f4b3283 100644
--- a/htdocs/product/reassort.php
+++ b/htdocs/product/reassort.php
@@ -464,7 +464,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 '';
@@ -495,7 +495,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 ' | ';
}
}
@@ -514,7 +514,7 @@ if ($resql) {
if (!empty($conf->global->PRODUCT_USE_UNITS)) {
print ''.$objp->unit_short.' | ';
}
- print '';
+ print ' | ';
print img_picto($langs->trans("StockMovement"), 'movement', 'class="pictofixedwidth"');
print ''.$langs->trans("Movements").'';
print ' | ';