Figured it out?

danm900 <[email protected]> 12 Sep 2003 03:35:17 -0000
Newsgroups gmane.comp.web.oscommerce.tips
Message-ID <acb12e84eac847a74856b7c481809088@osCommerce-Forums>
This message was sent from: Tips and Tricks
http://forums.oscommerce.com/viewtopic.php?p=228230#228230
----------------------------------------------------------------

I changed this:


<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
      echo tep_cache_also_purchased(3600);
    } else {
      include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
  }
?>


to this:



<?php
    if ((USE_CACHE == 'true') && empty($SID)) {
     // echo tep_cache_also_purchased(3600);
    } else {
     // include(DIR_WS_MODULES . FILENAME_ALSO_PURCHASED_PRODUCTS);
    }
  }
?>


And it seems to be gone! Answering my own questions...

DR