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

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/forgot/index.php

    r3634 r4608  
    2525    //¥á¥¢¥ÉÆþÎÏ»þ 
    2626    $_POST['email'] = strtolower($_POST['email']); 
    27     $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND status = 2 AND delete = 0"; 
     27    $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND status = 2 AND del_flg = 0"; 
    2828    $result = $conn->getAll($sql, array($_POST['email']) ); 
    2929     
     
    3636        $objPage->tpl_mainpage = 'forgot/secret.tpl'; 
    3737    } else { 
    38         $sql = "SELECT customer_id FROM dtb_customer WHERE email ILIKE ? AND status = 1 AND delete = 0";    //²¾ÅÐÏ¿Ãæ¤Î³Îǧ 
     38        $sql = "SELECT customer_id FROM dtb_customer WHERE email ILIKE ? AND status = 1 AND del_flg = 0";   //²¾ÅÐÏ¿Ãæ¤Î³Îǧ 
    3939        $result = $conn->getAll($sql, array($_POST['email']) ); 
    4040        if ($result) { 
     
    5151        // ¥Ò¥ß¥Ä¤ÎÅú¤¨¤Î²óÅú¤¬Àµ¤·¤¤¤«¥Á¥§¥Ã¥¯ 
    5252         
    53         $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND delete = 0"; 
     53        $sql = "SELECT * FROM dtb_customer WHERE email ILIKE ? AND del_flg = 0"; 
    5454        $result = $conn->getAll($sql, array($_SESSION['forgot']['email']) ); 
    5555        $data = $result[0]; 
Note: See TracChangeset for help on using the changeset viewer.