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_Initial.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/ 
     
    3838 
    3939        /** EC-CUBEのバージョン */ 
    40         define('ECCUBE_VERSION', "2.4.3"); 
     40        define('ECCUBE_VERSION', "2.4.4"); 
    4141    } 
    4242 
     
    101101    function setErrorReporting() { 
    102102        error_reporting(E_ALL & ~E_NOTICE); 
     103        // PHP 5.3.0対応 
     104        if (error_reporting() > 6143) { 
     105            error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED); 
     106        } 
    103107    } 
    104108 
Note: See TracChangeset for help on using the changeset viewer.