Changeset 16229


Ignore:
Timestamp:
2007/10/02 12:30:11 (16 years ago)
Author:
nanasess
Message:

sfCheckCustomerMailMaga() の検索条件に del_flg = 0 を追加(#164)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel/data/lib/slib.php

    r15337 r16229  
    19131913} 
    19141914 
    1915 /* ²ñ°÷¤Î¥á¥ë¥Þ¥¬ÅÐÏ¿¤¬¤¢¤ë¤«¤É¤¦¤«¤Î¥Á¥§¥Ã¥¯(²¾²ñ°÷¤ò´Þ¤Þ¤Ê¤¤) */ 
     1915/* ²ñ°÷ÅÐÏ¿¤¬¤¢¤ë¤«¤É¤¦¤«¤Î¥Á¥§¥Ã¥¯(²¾²ñ°÷¤ò´Þ¤Þ¤Ê¤¤) */ 
    19161916function sfCheckCustomerMailMaga($email) { 
    19171917    $col = "email, mailmaga_flg, customer_id"; 
    19181918    $from = "dtb_customer"; 
    1919     $where = "email = ? AND status = 2"; 
     1919    $where = "email = ? AND status = 2 AND del_flg = 0"; 
    19201920    $objQuery = new SC_Query(); 
    19211921    $arrRet = $objQuery->select($col, $from, $where, array($email)); 
Note: See TracChangeset for help on using the changeset viewer.