Ignore:
Timestamp:
2007/03/08 09:33:33 (19 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

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

    r11460 r11577  
    17731773/* ²ñ°÷¤Î¥á¥ë¥Þ¥¬ÅÐÏ¿¤¬¤¢¤ë¤«¤É¤¦¤«¤Î¥Á¥§¥Ã¥¯(²¾²ñ°÷¤ò´Þ¤Þ¤Ê¤¤) */ 
    17741774function sfCheckCustomerMailMaga($email) { 
    1775     $col = "T1.email, T1.mail_flag, T2.customer_id"; 
    1776     $from = "dtb_customer_mail AS T1 LEFT JOIN dtb_customer AS T2 ON T1.email = T2.email"; 
    1777     $where = "T1.email = ? AND T2.status = 2"; 
     1775    $col = "email, mailmaga_flg, customer_id"; 
     1776    $from = "dtb_customer"; 
     1777    $where = "email = ? AND status = 2"; 
    17781778    $objQuery = new SC_Query(); 
    17791779    $arrRet = $objQuery->select($col, $from, $where, array($email)); 
Note: See TracChangeset for help on using the changeset viewer.