Ignore:
Timestamp:
2014/06/03 15:58:18 (12 years ago)
Author:
shutta
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

Location:
branches/version-2_13-dev/data/class/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/util/GC_Utils.php

    r23492 r23513  
    337337        if (isset($arrDefinedConstants['Core'])) { 
    338338            $arrDefinedCoreConstants = $arrDefinedConstants['Core']; 
    339         } 
    340339        // PHP < 5.3.0 
    341         elseif (isset($arrDefinedConstants['internal'])) { 
     340        } elseif (isset($arrDefinedConstants['internal'])) { 
    342341            $arrDefinedCoreConstants = $arrDefinedConstants['internal']; 
    343         } 
    344342        // PHP == 5.3.0 (Windows) 
    345         elseif (isset($arrDefinedConstants['mhash'])) { 
     343        } elseif (isset($arrDefinedConstants['mhash'])) { 
    346344            $arrDefinedCoreConstants = $arrDefinedConstants['mhash']; 
    347345        } 
  • branches/version-2_13-dev/data/class/util/SC_Utils.php

    r23508 r23513  
    977977            fclose($ofp); 
    978978            fclose($ifp); 
    979         } 
    980979        // ファイルが開けなかった場合はエラーページを表示 
    981         else { 
     980        } else { 
    982981            SC_Utils_Ex::sfDispError(''); 
    983982            exit; 
Note: See TracChangeset for help on using the changeset viewer.