Ignore:
Timestamp:
2006/09/11 19:37:56 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/SC_Customer.php

    r1328 r4608  
    4646    function getCustomerDataFromEmailPass( $pass, $email ) { 
    4747        // ËÜÅÐÏ¿¤µ¤ì¤¿²ñ°÷¤Î¤ß 
    48         $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND delete = 0 AND status = 2"; 
     48        $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0 AND status = 2"; 
    4949        $result = $this->conn->getAll($sql, array($email)); 
    5050        $data = $result[0]; 
     
    6262    function setLogin($email) { 
    6363        // ËÜÅÐÏ¿¤µ¤ì¤¿²ñ°÷¤Î¤ß 
    64         $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND delete = 0 AND status = 2"; 
     64        $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0 AND status = 2"; 
    6565        $result = $this->conn->getAll($sql, array($email)); 
    6666        $data = $result[0]; 
     
    7171    // ¥»¥Ã¥·¥ç¥ó¾ðÊó¤òºÇ¿·¤Î¾ðÊó¤Ë¹¹¿·¤¹¤ë 
    7272    function updateSession() { 
    73         $sql = "SELECT * FROM dtb_customer WHERE customer_id = ? AND delete = 0"; 
     73        $sql = "SELECT * FROM dtb_customer WHERE customer_id = ? AND del_flg = 0"; 
    7474        $customer_id = $this->getValue('customer_id'); 
    7575        $arrRet = $this->conn->getAll($sql, array($customer_id)); 
Note: See TracChangeset for help on using the changeset viewer.