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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.