Ignore:
Timestamp:
2012/04/18 17:10:53 (12 years ago)
Author:
shutta
Message:

#1296 SC_* のコンストラクタの拡張が無視される
コンストラクタ名を、PHP4の記法(クラス名と同名の関数名)から、PHP5以降で標準的なconstructに変更。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_CustomerList.php

    r21755 r21767  
    2929    var $arrColumnCSV; 
    3030 
    31     function SC_CustomerList($array, $mode = '') { 
    32         parent::SC_SelectSql($array); 
     31    function __construct($array, $mode = '') { 
     32        parent::__construct($array); 
    3333 
    3434        $masterData = new SC_DB_MasterData_Ex(); 
Note: See TracChangeset for help on using the changeset viewer.