Changeset 4608 for temp/trunk/data/class/SC_Customer.php
- Timestamp:
- 2006/09/11 19:37:56 (20 years ago)
- File:
-
- 1 edited
-
temp/trunk/data/class/SC_Customer.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
temp/trunk/data/class/SC_Customer.php
r1328 r4608 46 46 function getCustomerDataFromEmailPass( $pass, $email ) { 47 47 // ËÜÅÐÏ¿¤µ¤ì¤¿²ñ°÷¤Î¤ß 48 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del ete= 0 AND status = 2";48 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0 AND status = 2"; 49 49 $result = $this->conn->getAll($sql, array($email)); 50 50 $data = $result[0]; … … 62 62 function setLogin($email) { 63 63 // ËÜÅÐÏ¿¤µ¤ì¤¿²ñ°÷¤Î¤ß 64 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del ete= 0 AND status = 2";64 $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0 AND status = 2"; 65 65 $result = $this->conn->getAll($sql, array($email)); 66 66 $data = $result[0]; … … 71 71 // ¥»¥Ã¥·¥ç¥ó¾ðÊó¤òºÇ¿·¤Î¾ðÊó¤Ë¹¹¿·¤¹¤ë 72 72 function updateSession() { 73 $sql = "SELECT * FROM dtb_customer WHERE customer_id = ? AND del ete= 0";73 $sql = "SELECT * FROM dtb_customer WHERE customer_id = ? AND del_flg = 0"; 74 74 $customer_id = $this->getValue('customer_id'); 75 75 $arrRet = $this->conn->getAll($sql, array($customer_id));
Note: See TracChangeset
for help on using the changeset viewer.
