Ignore:
Timestamp:
2013/01/31 18:39:05 (13 years ago)
Author:
m_uehara
Message:

#2084 r22432 - r22433 の逆マージを行いました。

Location:
branches/version-2_12-multilang/data/class/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/util/GC_Utils.php

    r22433 r22489  
    120120     */ 
    121121    function gfGetLogStr($mess, $log_level = 'Info') { 
    122         trigger_error(t("GC_Utils_001"), E_USER_WARNING); 
     122        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    123123        // メッセージの前に、ログ出力元関数名とログ出力関数呼び出し部分の行数を付与 
    124124        $mess = GC_Utils::gfGetCallerInfo(true) . $mess; 
     
    138138     */ 
    139139    function gfAdminLog($mess, $log_level = 'Info') { 
    140         trigger_error(t("GC_Utils_001"), E_USER_WARNING); 
     140        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    141141        // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する 
    142142        if ($log_level === 'Debug' && DEBUG_MODE === false) { 
     
    154154     */ 
    155155    function gfFrontLog($mess, $log_level = 'Info') { 
    156         trigger_error(t("GC_Utils_001"), E_USER_WARNING); 
     156        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    157157        // ログレベル=Debugの場合は、DEBUG_MODEがtrueの場合のみログ出力する 
    158158        if ($log_level === 'Debug' && DEBUG_MODE === false) { 
  • branches/version-2_12-multilang/data/class/util/SC_Utils.php

    r22453 r22489  
    166166     */ 
    167167    function sfDispException($debugMsg = null) { 
    168         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     168        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    169169        trigger_error($debugMsg, E_USER_ERROR); 
    170170    } 
     
    12631263     */ 
    12641264    function printXMLDeclaration() { 
    1265         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1265        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    12661266        GC_Utils_Ex::printXMLDeclaration(); 
    12671267    } 
     
    13441344     */ 
    13451345    function sfGetUrl() { 
    1346         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1346        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    13471347        return GC_Utils_Ex::getUrl(); 
    13481348    } 
     
    13541354     */ 
    13551355    function sfBacktraceToString($arrBacktrace) { 
    1356         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1356        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    13571357        return GC_Utils_Ex::toStringBacktrace($arrBacktrace); 
    13581358    } 
     
    13641364     */ 
    13651365    function sfIsAdminFunction() { 
    1366         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1366        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    13671367        return GC_Utils_Ex::isAdminFunction(); 
    13681368    } 
     
    13741374     */ 
    13751375    function sfIsFrontFunction() { 
    1376         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1376        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    13771377        return GC_Utils_Ex::isFrontFunction(); 
    13781378    } 
     
    13841384     */ 
    13851385    function sfIsInstallFunction() { 
    1386         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1386        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    13871387        return GC_Utils_Ex::isInstallFunction(); 
    13881388    } 
     
    14361436     */ 
    14371437    function sfMicrotimeFloat() { 
    1438         trigger_error(t("SC_Utils_002"), E_USER_WARNING); 
     1438        trigger_error(t("c_A method for upward compatibility was used._01"), E_USER_WARNING); 
    14391439        return microtime(true); 
    14401440    } 
Note: See TracChangeset for help on using the changeset viewer.