View Single Post
Old July 14th, 2004, 02:31 PM   #2 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 67,988
try changing lines 228-233 in showproduct.php from this

$extra1 = convert_markups( $extra1 ); $extra1 = convert_returns( $extra1 );
$extra2 = convert_markups( $extra2 ); $extra2 = convert_returns( $extra2 );
$extra3 = convert_markups( $extra3 ); $extra3 = convert_returns( $extra3 );
$extra4 = convert_markups( $extra4 ); $extra4 = convert_returns( $extra4 );
$extra5 = convert_markups( $extra5 ); $extra5 = convert_returns( $extra5 );
$extra6 = convert_markups( $extra6 ); $extra6 = convert_returns( $extra6 );


to this

$extra1 = convert_markups( stripslashes($extra1) ); $extra1 = convert_returns( $extra1 );
$extra2 = convert_markups( stripslashes($extra2) ); $extra2 = convert_returns( $extra2 );
$extra3 = convert_markups( stripslashes($extra3) ); $extra3 = convert_returns( $extra3 );
$extra4 = convert_markups( stripslashes($extra4) ); $extra4 = convert_returns( $extra4 );
$extra5 = convert_markups( stripslashes($extra5) ); $extra5 = convert_returns( $extra5 );
$extra6 = convert_markups( stripslashes($extra6) ); $extra6 = convert_returns( $extra6 );
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote