Ignore:
Timestamp:
2007/03/08 23:50:35 (19 years ago)
Author:
uehara
Message:
 
Location:
branches/dev/html/admin/mail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/mail/inc_mailmagazine.php

    r11625 r11627  
    4444                            array(  "column" => "job",              "convert" => "" ), 
    4545                            array(  "column" => "email",            "convert" => "a" ), 
    46                             array(  "column" => "email_mobile",         "convert" => "a" ), 
    4746                            array(  "column" => "htmlmail",         "convert" => "n" ), 
    4847                            array(  "column" => "customer",         "convert" => "" ), 
     
    7574                            ,array(  "column" => "buy_total_from",  "convert" => "n" )       
    7675                            ,array(  "column" => "buy_total_to",    "convert" => "n" ) 
    77                             ,array(  "column" => "campaign_id", "convert" => "" )                                            
    78                          ); 
     76                            ,array(  "column" => "campaign_id", "convert" => "" ) 
     77                            ,array(  "column" => "mail_type",           "convert" => "a" ) 
     78 
     79                    ); 
    7980 
    8081//-------------------------------------------------------------------------------------------------------------------------------------- 
  • branches/dev/html/admin/mail/index.php

    r11623 r11627  
    2727        global $arrSex;      
    2828        $this->arrSex = $arrSex; 
     29        global $arrMailType; 
     30        $this->arrMailType = $arrMailType; 
    2931        global $arrPageRows; 
    3032        $this->arrPageRows = $arrPageRows; 
     
    9294        } 
    9395        $list_data['job_disp'] = $job_disp; 
     96    } 
     97     
     98    // ¥á¡¼¥ë¼ïÊ̤ÎÊÑ´¹ 
     99    if (count($list_data['mail_type']) > 0) { 
     100        foreach($list_data['mail_type'] as $key => $val){ 
     101            $list_data['mail_type'][$key] = $objPage->arrMailType[$val]; 
     102            $mail_type_disp .= $list_data['mail_type'][$key] . " "; 
     103        } 
     104        $list_data['mail_type_disp'] = $mail_type_disp; 
    94105    } 
    95106     
Note: See TracChangeset for help on using the changeset viewer.