|
o.k., thanks, I found it. It was the line:
$price[$itemnum] = "\$" . number_format( $priceline, 2 );
I changed it to:
$price[$itemnum] = "€" . number_format( $priceline, 2 );
For the average price I changed earlier already in showproduct.php this line:
$avgprice = "$" . number_format( $avgprice, 2 );
to this line:
$avgprice = "€" . number_format( $avgprice, 2 );
|