Make WordPress Core


Ignore:
Timestamp:
05/22/2009 06:16:40 PM (16 years ago)
Author:
ryan
Message:

Standardize on UTC. Props Denis-de-Bernardy. fixes #9793

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r11408 r11434  
    31423142        if ( ! in_array($zone[0], $continents) )
    31433143            continue;
     3144        if ( $zone[0] == 'Etc' && in_array($zone[1], array('UCT', 'GMT', 'GMT0', 'GMT+0', 'GMT-0', 'Greenwich', 'Universal', 'Zulu')) )
     3145            continue;
    31443146        $zonen[$i]['continent'] = isset($zone[0]) ? $zone[0] : '';
    31453147        $zonen[$i]['city'] = isset($zone[1]) ? $zone[1] : '';
Note: See TracChangeset for help on using the changeset viewer.