Changeset 7180 for temp/trunk/data/class


Ignore:
Timestamp:
2006/11/01 12:10:07 (20 years ago)
Author:
kakinaka
Message:

* empty log message *

Location:
temp/trunk/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/GC_SendMail.php

    r7179 r7180  
    6464        $this->to            = $to; 
    6565        $this->subject       = Mb_encode_mimeheader($subject); 
    66         $this->body          = mb_convert_encoding( $body, "iso-2022-jp", "CHAR_CODE"); 
     66        $this->body          = mb_convert_encoding( $body, "iso-2022-jp", CHAR_CODE); 
    6767        $this->header        = "Mime-Version: 1.0\n"; 
    6868        $this->header       .= "Content-Type: text/html; charset=iso-2022-jp\n"; 
  • temp/trunk/data/class/SC_Pdf.php

    r7179 r7180  
    2828    function SC_Pdf($width = 595, $height = 842, $fontsize = 10) { 
    2929        $this->license_key = "B600602-010400-714251-5851C1"; 
    30         $this->src_code = "CHAR_CODE"; 
     30        $this->src_code = CHAR_CODE; 
    3131        // UTF-8¤Ç¤Ê¤¤¤È¥Ö¥í¥Ã¥¯Æâ¤Ç²þ¹Ô¤Ç¤­¤Ê¤¤¡£ 
    3232        $this->dst_code = "UTF-8"; 
     
    410410            $end_y = 0; 
    411411        } 
    412         $enc_table = mb_convert_encoding($line, "utf-8", "CHAR_CODE"); 
     412        $enc_table = mb_convert_encoding($line, "utf-8", CHAR_CODE); 
    413413                 
    414414        $tf = PDF_create_textflow($this->pdf, $enc_table, $option); 
Note: See TracChangeset for help on using the changeset viewer.