Ignore:
Timestamp:
2012/02/09 16:52:16 (12 years ago)
Author:
Seasoft
Message:

#1633 (エラーハンドリングの改善)
#1605 (PHP4向けコードの除去、PHP5向けのコード最適化)
#811 (出力バッファリングの利用を見直し)
#1625 (typo修正・ソース整形・ソースコメントの改善)

Location:
branches/version-2_12-dev/html
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/html/admin/require.php

    r21420 r21465  
    2727 
    2828require_once HTML_REALDIR . 'define.php'; 
    29 require_once HTML_REALDIR . 'handle_error.php'; 
    30  
     29while (@ob_end_flush()); 
    3130require_once HTML_REALDIR . HTML2DATA_DIR . 'require_base.php'; 
    32  
    3331ob_start(); 
  • branches/version-2_12-dev/html/install/index.php

    r21445 r21465  
    2828define('INSTALL_FUNCTION', true); 
    2929define("INSTALL_INFO_URL", "http://www.ec-cube.net/install_info/index.php"); 
    30 require_once HTML_REALDIR . 'handle_error.php'; 
     30while (@ob_end_flush()); 
    3131require_once HTML_REALDIR . HTML2DATA_DIR . 'require_base.php'; 
     32ob_start(); 
    3233// ▲require.php 相当 
    3334 
  • branches/version-2_12-dev/html/require.php

    r21464 r21465  
    3030 
    3131require_once HTML_REALDIR . 'define.php'; 
    32 require_once HTML_REALDIR . 'handle_error.php'; 
     32while (@ob_end_flush()); 
    3333require_once HTML_REALDIR . HTML2DATA_DIR . 'require_base.php'; 
     34 
     35// 絵文字変換 (除去) フィルターを組み込む。 
     36ob_start(array('SC_MobileEmoji', 'handler')); 
    3437 
    3538if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    3639    $objMobile = new SC_Helper_Mobile_Ex(); 
    3740    $objMobile->sfMobileInit(); 
    38     ob_start(); 
    39 } else { 
    40     // 絵文字変換 (除去) フィルターを組み込む。 
    41     ob_start(array('SC_MobileEmoji', 'handler')); 
    4241} 
Note: See TracChangeset for help on using the changeset viewer.