Changeset 11747 for branches/dev/data


Ignore:
Timestamp:
2007/03/12 10:39:22 (19 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_CustomerList.php

    r11741 r11747  
    282282    } 
    283283 
    284     function getListMailMagazine() { 
     284    function getListMailMagazine($is_mobile = false) { 
     285         
     286        if($is_mobile == true) { 
     287            $email_column = "dtb_customer.email_mobile"; 
     288        } else { 
     289            $email_column = "dtb_customer.email";            
     290        } 
     291         
    285292        $this->select = " 
    286293            SELECT  
     
    291298                dtb_customer.kana02, 
    292299                dtb_customer.sex, 
    293                 dtb_customer.email, 
     300                $email_column,       
    294301                dtb_customer.tel01, 
    295302                dtb_customer.tel02, 
Note: See TracChangeset for help on using the changeset viewer.