Ignore:
Timestamp:
2007/10/08 19:40:30 (17 years ago)
Author:
naka
Message:

GC_Mobile*→SC_Mobile*に変換

Location:
branches/feature-module-update/data/smarty_extends
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/smarty_extends/block.marquee.php

    r15532 r16329  
    1818 
    1919    // marqueeタグを使用しない場合 
    20     if (defined('MOBILE_SITE') && GC_MobileUserAgent::getCarrier() == 'docomo') { 
     20    if (defined('MOBILE_SITE') && SC_MobileUserAgent::getCarrier() == 'docomo') { 
    2121        return "<div>\n$content\n</div>\n"; 
    2222    } 
  • branches/feature-module-update/data/smarty_extends/modifier.numeric_emoji.php

    r15532 r16329  
    1313    static $numeric_emoji_index = array('134', '125', '126', '127', '128', '129', '130', '131', '132', '133'); 
    1414 
    15     if (GC_MobileUserAgent::isMobile() && isset($numeric_emoji_index[$value])) { 
     15    if (SC_MobileUserAgent::isMobile() && isset($numeric_emoji_index[$value])) { 
    1616        return '[emoji:' . $numeric_emoji_index[$value] . ']'; 
    1717    } else { 
Note: See TracChangeset for help on using the changeset viewer.