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_Date.php

    r21514 r21767  
    3030 
    3131    // コンストラクタ 
    32     function SC_Date($start_year='', $end_year='') { 
     32    function __construct($start_year='', $end_year='') { 
    3333        if ($start_year)  $this->setStartYear($start_year); 
    3434        if ($end_year)    $this->setEndYear($end_year); 
Note: See TracChangeset for help on using the changeset viewer.