Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

1498
 
1862
 
1862
 
recently_visited.php
_> 55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
  77 
<> 8 -  Copyright (c) 2006 osCommerce
   8+  Copyright (c) 2007 osCommerce
99 
  1010   This program is free software; you can redistribute it and/or modify
  1111   it under the terms of the GNU General Public License v2 (1991)
     
 !
1717 
  1818 /* Class constructor */
  1919 
<> 20 -    function osC_RecentlyVisited() {
   20+    function __construct() {
2121       if (isset($_SESSION['osC_RecentlyVisited_data']) === false) {
  2222         $_SESSION['osC_RecentlyVisited_data'] = array();
  2323       }
     
 !
3030 
  3131       if (SERVICE_RECENTLY_VISITED_SHOW_PRODUCTS == '1') {
  3232         if (isset($osC_Product) && is_a($osC_Product, 'osC_Product')) {
<> 33 -          $this->setProduct($osC_Product->getID());
   33+          $this->setProduct($osC_Product->getMasterID());
<_ 3434         }
  3535       }
  3636