Make WordPress Core


Ignore:
Timestamp:
04/13/2011 05:30:02 PM (14 years ago)
Author:
ryan
Message:

Remove PHP4 timezone support. Props hakre. fixes #16970

File:
1 edited

Legend:

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

    r17613 r17637  
    26202620    return clone $object;
    26212621}
     2622
     2623/**
     2624 * Check for PHP timezone support
     2625 *
     2626 * @since 2.9.0
     2627 * @deprecated 3.2
     2628 *
     2629 * @return bool
     2630 */
     2631function wp_timezone_supported() {
     2632    _deprecated_function( __FUNCTION__, '3.2' );
     2633 
     2634    return true;
     2635}
Note: See TracChangeset for help on using the changeset viewer.