Changeset 1717

Show
Ignore:
Timestamp:
04/02/08 09:46:22 (19 months ago)
Author:
fumiakiy
Message:

Added locale specific default value to TimeOffset config directive. BugId:67724

Location:
branches/release-33
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/release-33/Makefile

    r1676 r1717  
    115115            -e 's!__PRODUCT_VERSION_ID__!$(BUILD_VERSION_ID)!g' \ 
    116116        -e 's!__API_VERSION__!$(API_VERSION)!g' \ 
     117        -e 's!__DEFAULT_TIMEZONE__!$(DEFAULT_TIMEZONE)!g' \ 
    117118        $< > $@ 
    118119 
  • branches/release-33/php/mt.php.pre

    r1554 r1717  
    349349        isset($cfg['pluginpath']) or 
    350350            $cfg['pluginpath'] = array($this->config('MTDir') . DIRECTORY_SEPARATOR . 'plugins'); 
     351        isset($cfg['timeoffset']) or 
     352            $cfg['timeoffset'] = '__DEFAULT_TIMEZONE__'; 
    351353    } 
    352354