Quick Search:

Mode

Context

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

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

685
 
733
 
733
 
account.php
_> 11 <?php
  22 /*
<> 3 -  $Id: account.php 685 2006-08-14 17:17:56Z hpdl $
   3+  $Id: account.php 733 2006-08-20 15:32:32Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
5050       $Qcustomer->bindValue(':customers_email_address', $data['email_address']);
  5151       $Qcustomer->bindValue(':customers_newsletter', (isset($data['newsletter']) && ($data['newsletter'] == '1') ? '1' : ''));
  5252       $Qcustomer->bindValue(':customers_status', '1');
<> 53 -      $Qcustomer->bindValue(':customers_ip_address', tep_get_ip_address());
   53+      $Qcustomer->bindValue(':customers_ip_address', osc_get_ip_address());
<_ 5454       $Qcustomer->bindValue(':customers_password', tep_encrypt_password($data['password']));
  5555       $Qcustomer->bindValue(':customers_gender', (((ACCOUNT_GENDER > -1) && isset($data['gender']) && (($data['gender'] == 'm') || ($data['gender'] == 'f'))) ? $data['gender'] : ''));
  5656       $Qcustomer->bindValue(':customers_dob', ((ACCOUNT_DATE_OF_BIRTH == '1') ? date('Ymd', $data['dob']) : ''));