Ignore:
Timestamp:
2010/07/20 13:25:33 (14 years ago)
Author:
kajiwara
Message:

EC-CUBE Ver2.4.4 分コミット。詳細はこちら( http://www.ec-cube.net/release/detail.php?release_id=223

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/data/class/SC_Fpdf.php

    r18562 r18758  
    33 * This file is part of EC-CUBE 
    44 * 
    5  * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
     5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved. 
    66 * 
    77 * http://www.lockon.co.jp/ 
     
    341341      $col = "product_id, classcategory_id1, classcategory_id2, product_code, product_name, classcategory_name1, classcategory_name2, price, quantity, point_rate"; 
    342342      $where = "order_id = ?"; 
    343       $objQuery->setorder("classcategory_id1, classcategory_id2"); 
     343      $objQuery->setOrder("classcategory_id1, classcategory_id2"); 
    344344      $arrRet = $objQuery->select($col, "dtb_order_detail", $where, array($order_id)); 
    345345      return $arrRet; 
    346346    } 
    347347 
    348     // 文字コードSJIS変換 -> japanese.phpで使用出来る文字コードはSJISのみ 
     348    // 文字コードSJIS変換 -> japanese.phpで使用出来る文字コードはSJIS-winのみ 
    349349    function sjis_conv($conv_str) { 
    350       return (mb_convert_encoding($conv_str, "SJIS", CHAR_CODE)); 
     350      return (mb_convert_encoding($conv_str, "SJIS-win", CHAR_CODE)); 
    351351    } 
    352352 
Note: See TracChangeset for help on using the changeset viewer.