Manual:$wgLocaltimezone

From MediaWiki.org
Jump to: navigation, search

Other languages:
català • ‎Deutsch • ‎English • ‎español • ‎suomi • ‎français • ‎italiano • ‎日本語 • ‎Nederlands • ‎polski • ‎português • ‎português do Brasil • ‎русский • ‎中文
Timezone settings: $wgLocaltimezone
Fake out the timezone that the server thinks it's in.
Introduced in version: 1.4.0 (r773)
Removed in version: still in use
Allowed values: string or null
Default value: null
Other settings: Alphabetical | By function

Details[edit]

Fake out the timezone that the server thinks it's in. This will be used for date display and not for what's stored in the database. Setting the variable to null will set the displayed time zone to the server's default.

Examples
$wgLocaltimezone = 'GMT';
$wgLocaltimezone = 'EST';
$wgLocaltimezone = 'EST8'; ## -6 hrs instead of -5
$wgLocaltimezone = 'PST8PDT';
$wgLocaltimezone = 'Asia/Bangalore';
$wgLocaltimezone = 'America/New_York';
$wgLocaltimezone = 'CET';

Note: Please refer to Manual:Timezone for more information.

See also[edit]