Hi,
The paypal pro plugin also send the products name/code/price/quantity/tax to paypal automatically, not only the user details.
If you want to add the beginning (127 first chars) of the description of the product in paypal, you would have to add the code:
$class = hikashop_get('class.product');
$prod = $class->get($product->product_id);
$vars["L_DESC".$i]=substr(strip_tags($prod->product_description),0,127);
after the line:
$vars["L_NUMBER".$i]=$product->order_product_code;
of the paypalpro.php file.