Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

201
 
202
 
202
 
customer.php
_> 11 <?php
  22 /*
<> 3 -  $Id: customer.php 201 2005-09-23 08:40:18Z hpdl $
   3+  $Id: customer.php 202 2005-09-23 08:44:11Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
2020 /* Class constructor */
  2121 
  2222     function osC_Customer() {
<> 23 -      if (isset($_SESSION['osC_Customer_data']) && is_array($_SESSION['osC_Customer_data']) && (sizeof($_SESSION['osC_Customer_data']) > 0) && isset($_SESSION['osC_Customer_data']['id']) && is_numeric($_SESSION['osC_Customer_data']['id'])) {
   23+      if (isset($_SESSION['osC_Customer_data']) && is_array($_SESSION['osC_Customer_data']) && isset($_SESSION['osC_Customer_data']['id']) && is_numeric($_SESSION['osC_Customer_data']['id'])) {
<_ 2424         $this->setIsLoggedOn(true);
  2525         $this->_data =& $_SESSION['osC_Customer_data'];
  2626       }