Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

justfun

Archived
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Real Name
    Bj?rn

justfun's Achievements

  1. Just replace: line 703. array_walk($readed, 'walk'); With: foreach($readed as $val): walk($val); endforeach;
  2. ooppss.. Delete the bold line from the replacement. its one too many.. Sorry
  3. Go to about line 1268: Replace this: ________________________________________________________________ // now any remaining doubled double quotes should be converted to one doublequote $items[$i] = str_replace('""',""",$items[$i]); if ($replace_quotes){ $items[$i] = str_replace('""',""",$items[$i]); $items[$i] = str_replace('"',""",$items[$i]); $items[$i] = str_replace("'","'",$items[$i]); } _______________________________________________________________ With This: _______________________________________________________________ // now any remaining doubled double quotes should be converted to one doublequote if ($replace_quotes){ $items[$i] = str_replace('""',""",$items[$i]); $items[$i] = str_replace('""',""",$items[$i]); $items[$i] = str_replace('"',""",$items[$i]); $items[$i] = str_replace("'","'",$items[$i]); } ________________________________________________________ It did the trick for me..
×
×
  • Create New...