diff --git a/htdocs/product/stock/massstockmove.php b/htdocs/product/stock/massstockmove.php
index 54aa307fc95..7831baa5865 100644
--- a/htdocs/product/stock/massstockmove.php
+++ b/htdocs/product/stock/massstockmove.php
@@ -265,7 +265,15 @@ print '
';
print '| ';
$filtertype=0;
if (! empty($conf->global->STOCK_SUPPORTS_SERVICES)) $filtertype='';
-print $form->select_produits($id_product,'productid',$filtertype);
+if ($conf->global->PRODUIT_LIMIT_SIZE <= 0)
+{
+ $limit='';
+}
+else
+{
+ $limit = $conf->global->PRODUIT_LIMIT_SIZE;
+}
+print $form->select_produits($id_product,'productid',$filtertype,$limit);
print ' | ';
// In warehouse
print '';
|