Make WordPress Core

Ticket #46438: 46438_4.patch

File 46438_4.patch, 88.4 KB (added by Rarst, 5 years ago)
  • src/wp-includes/date.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    317317                                $_year = $date_query['year'];
    318318                        }
    319319
    320                         $max_days_of_year = date( 'z', mktime( 0, 0, 0, 12, 31, $_year ) ) + 1;
     320                        $max_days_of_year = gmdate( 'z', mktime( 0, 0, 0, 12, 31, $_year ) ) + 1;
    321321                } else {
    322322                        // otherwise we use the max of 366 (leap-year)
    323323                        $max_days_of_year = 366;
     
    352352                         * If we have a specific year, use it to calculate number of weeks.
    353353                         * Note: the number of weeks in a year is the date in which Dec 28 appears.
    354354                         */
    355                         $week_count = date( 'W', mktime( 0, 0, 0, 12, 28, $_year ) );
     355                        $week_count = gmdate( 'W', mktime( 0, 0, 0, 12, 28, $_year ) );
    356356
    357357                } else {
    358358                        // Otherwise set the week-count to a maximum of 53.
     
    923923                }
    924924
    925925                if ( ! isset( $datetime['day'] ) ) {
    926                         $datetime['day'] = ( $default_to_max ) ? (int) date( 't', mktime( 0, 0, 0, $datetime['month'], 1, $datetime['year'] ) ) : 1;
     926                        $datetime['day'] = ( $default_to_max ) ? (int) gmdate( 't', mktime( 0, 0, 0, $datetime['month'], 1, $datetime['year'] ) ) : 1;
    927927                }
    928928
    929929                if ( ! isset( $datetime['hour'] ) ) {
  • src/wp-includes/class-wp.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    443443                        }
    444444
    445445                        if ( ! $wp_last_modified ) {
    446                                 $wp_last_modified = date( 'D, d M Y H:i:s' );
     446                                $wp_last_modified = gmdate( 'D, d M Y H:i:s' );
    447447                        }
    448448
    449449                        $wp_last_modified .= ' GMT';
  • src/wp-admin/includes/dashboard.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    863863                        $posts->the_post();
    864864
    865865                        $time = get_the_time( 'U' );
    866                         if ( date( 'Y-m-d', $time ) == $today ) {
     866                        if ( gmdate( 'Y-m-d', $time ) == $today ) {
    867867                                $relative = __( 'Today' );
    868                         } elseif ( date( 'Y-m-d', $time ) == $tomorrow ) {
     868                        } elseif ( gmdate( 'Y-m-d', $time ) == $tomorrow ) {
    869869                                $relative = __( 'Tomorrow' );
    870                         } elseif ( date( 'Y', $time ) !== $year ) {
     870                        } elseif ( gmdate( 'Y', $time ) !== $year ) {
    871871                                /* translators: date and time format for recent posts on the dashboard, from a different calendar year, see https://secure.php.net/date */
    872872                                $relative = date_i18n( __( 'M jS Y' ), $time );
    873873                        } else {
  • src/wp-includes/class-phpmailer.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    32733273        // Set the time zone to whatever the default is to avoid 500 errors
    32743274        // Will default to UTC if it's not set properly in php.ini
    32753275        date_default_timezone_set(@date_default_timezone_get());
    3276         return date('D, j M Y H:i:s O');
     3276        return gmdate('D, j M Y H:i:s O');
    32773277    }
    32783278
    32793279    /**
  • tests/phpunit/tests/post/listPages.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    4949        public static function wpSetupBeforeClass() {
    5050                self::$time = time();
    5151
    52                 $post_date = date( 'Y-m-d H:i:s', self::$time );
     52                $post_date = gmdate( 'Y-m-d H:i:s', self::$time );
    5353
    5454                self::$parent_1 = self::factory()->post->create(
    5555                        array(
     
    157157                        'depth'     => 1,
    158158                        'show_date' => true,
    159159                );
    160                 $date = date( get_option( 'date_format' ), self::$time );
     160                $date = gmdate( get_option( 'date_format' ), self::$time );
    161161
    162162                $expected = '<li class="pagenav">Pages<ul><li class="page_item page-item-' . self::$parent_1 . ' page_item_has_children"><a href="' . get_permalink( self::$parent_1 ) . '">Parent 1</a> ' . $date . '</li>
    163163<li class="page_item page-item-' . self::$parent_2 . ' page_item_has_children"><a href="' . get_permalink( self::$parent_2 ) . '">Parent 2</a> ' . $date . '</li>
     
    173173                        'show_date'   => true,
    174174                        'date_format' => 'l, F j, Y',
    175175                );
    176                 $date = date( $args['date_format'], self::$time );
     176                $date = gmdate( $args['date_format'], self::$time );
    177177
    178178                $expected = '<li class="pagenav">Pages<ul><li class="page_item page-item-' . self::$parent_1 . ' page_item_has_children"><a href="' . get_permalink( self::$parent_1 ) . '">Parent 1</a> ' . $date . '
    179179<ul class=\'children\'>
  • tests/phpunit/tests/url.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    336336
    337337        public function test_get_adjacent_post() {
    338338                $now      = time();
    339                 $post_id  = self::factory()->post->create( array( 'post_date' => date( 'Y-m-d H:i:s', $now - 1 ) ) );
    340                 $post_id2 = self::factory()->post->create( array( 'post_date' => date( 'Y-m-d H:i:s', $now ) ) );
     339                $post_id  = self::factory()->post->create( array( 'post_date' => gmdate( 'Y-m-d H:i:s', $now - 1 ) ) );
     340                $post_id2 = self::factory()->post->create( array( 'post_date' => gmdate( 'Y-m-d H:i:s', $now ) ) );
    341341
    342342                if ( ! isset( $GLOBALS['post'] ) ) {
    343343                        $GLOBALS['post'] = null;
     
    379379                        array(
    380380                                'post_author' => $u,
    381381                                'post_status' => 'private',
    382                                 'post_date'   => date( 'Y-m-d H:i:s', $now - 1 ),
     382                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now - 1 ),
    383383                        )
    384384                );
    385385                $p2  = self::factory()->post->create(
    386386                        array(
    387387                                'post_author' => $u,
    388                                 'post_date'   => date( 'Y-m-d H:i:s', $now ),
     388                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now ),
    389389                        )
    390390                );
    391391
     
    417417                        array(
    418418                                'post_author' => $u1,
    419419                                'post_status' => 'private',
    420                                 'post_date'   => date( 'Y-m-d H:i:s', $now - 1 ),
     420                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now - 1 ),
    421421                        )
    422422                );
    423423                $p2  = self::factory()->post->create(
    424424                        array(
    425425                                'post_author' => $u1,
    426                                 'post_date'   => date( 'Y-m-d H:i:s', $now ),
     426                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now ),
    427427                        )
    428428                );
    429429
     
    454454                $p1  = self::factory()->post->create(
    455455                        array(
    456456                                'post_author' => $u1,
    457                                 'post_date'   => date( 'Y-m-d H:i:s', $now - 2 ),
     457                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now - 2 ),
    458458                        )
    459459                );
    460460                $p2  = self::factory()->post->create(
    461461                        array(
    462462                                'post_author' => $u1,
    463463                                'post_status' => 'private',
    464                                 'post_date'   => date( 'Y-m-d H:i:s', $now - 1 ),
     464                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now - 1 ),
    465465                        )
    466466                );
    467467                $p3  = self::factory()->post->create(
    468468                        array(
    469469                                'post_author' => $u1,
    470                                 'post_date'   => date( 'Y-m-d H:i:s', $now ),
     470                                'post_date'   => gmdate( 'Y-m-d H:i:s', $now ),
    471471                        )
    472472                );
    473473
  • src/wp-includes/functions.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    4141        if ( $translate ) {
    4242                return date_i18n( $format, $i );
    4343        } else {
    44                 return date( $format, $i );
     44                return gmdate( $format, $i );
    4545        }
    4646}
    4747
     
    111111        $dateformatstring = preg_replace( '/(?<!\\\\)r/', DATE_RFC2822, $dateformatstring );
    112112
    113113        if ( ( ! empty( $wp_locale->month ) ) && ( ! empty( $wp_locale->weekday ) ) ) {
    114                 $datemonth            = $wp_locale->get_month( date( 'm', $i ) );
     114                $datemonth            = $wp_locale->get_month( gmdate( 'm', $i ) );
    115115                $datemonth_abbrev     = $wp_locale->get_month_abbrev( $datemonth );
    116                 $dateweekday          = $wp_locale->get_weekday( date( 'w', $i ) );
     116                $dateweekday          = $wp_locale->get_weekday( gmdate( 'w', $i ) );
    117117                $dateweekday_abbrev   = $wp_locale->get_weekday_abbrev( $dateweekday );
    118                 $datemeridiem         = $wp_locale->get_meridiem( date( 'a', $i ) );
    119                 $datemeridiem_capital = $wp_locale->get_meridiem( date( 'A', $i ) );
     118                $datemeridiem         = $wp_locale->get_meridiem( gmdate( 'a', $i ) );
     119                $datemeridiem_capital = $wp_locale->get_meridiem( gmdate( 'A', $i ) );
    120120                $dateformatstring     = ' ' . $dateformatstring;
    121121                $dateformatstring     = preg_replace( '/([^\\\])D/', "\\1" . backslashit( $dateweekday_abbrev ), $dateformatstring );
    122122                $dateformatstring     = preg_replace( '/([^\\\])F/', "\\1" . backslashit( $datemonth ), $dateformatstring );
     
    177177                        }
    178178                }
    179179        }
    180         $j = @date( $dateformatstring, $i );
     180        $j = @gmdate( $dateformatstring, $i );
    181181
    182182        /**
    183183         * Filters the date formatted based on the locale.
     
    415415        $day = mktime( 0, 0, 0, $md, $mm, $my );
    416416
    417417        // The day of the week from the timestamp.
    418         $weekday = date( 'w', $day );
     418        $weekday = gmdate( 'w', $day );
    419419
    420420        if ( ! is_numeric( $start_of_week ) ) {
    421421                $start_of_week = get_option( 'start_of_week' );
  • tests/phpunit/tests/date/dateI18n.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    66 */
    77class Tests_Date_I18n extends WP_UnitTestCase {
    88        public function test_should_format_date() {
    9                 $this->assertEquals( strtotime( date( 'Y-m-d H:i:s' ) ), strtotime( date_i18n( 'Y-m-d H:i:s' ) ), 'The dates should be equal', 2 );
     9                $this->assertEquals( strtotime( gmdate( 'Y-m-d H:i:s' ) ), strtotime( date_i18n( 'Y-m-d H:i:s' ) ), 'The dates should be equal', 2 );
    1010        }
    1111
    1212        public function test_should_use_custom_timestamp() {
     
    1414        }
    1515
    1616        public function test_date_should_be_in_gmt() {
    17                 $this->assertEquals( strtotime( date( DATE_RFC3339 ) ), strtotime( date_i18n( DATE_RFC3339, false, true ) ), 'The dates should be equal', 2 );
     17                $this->assertEquals( strtotime( gmdate( DATE_RFC3339 ) ), strtotime( date_i18n( DATE_RFC3339, false, true ) ), 'The dates should be equal', 2 );
    1818        }
    1919
    2020        public function test_custom_timestamp_ignores_gmt_setting() {
     
    2424        public function test_custom_timezone_setting() {
    2525                update_option( 'timezone_string', 'America/Regina' );
    2626
    27                 $this->assertEquals( strtotime( date( 'Y-m-d H:i:s', time() + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) ), strtotime( date_i18n( 'Y-m-d H:i:s' ) ), 'The dates should be equal', 2 );
     27                $this->assertEquals( strtotime( gmdate( 'Y-m-d H:i:s', time() + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) ), strtotime( date_i18n( 'Y-m-d H:i:s' ) ), 'The dates should be equal', 2 );
    2828        }
    2929
    3030        public function test_date_should_be_in_gmt_with_custom_timezone_setting() {
    3131                update_option( 'timezone_string', 'America/Regina' );
    3232
    33                 $this->assertEquals( strtotime( date( DATE_RFC3339 ) ), strtotime( date_i18n( DATE_RFC3339, false, true ) ), 'The dates should be equal', 2 );
     33                $this->assertEquals( strtotime( gmdate( DATE_RFC3339 ) ), strtotime( date_i18n( DATE_RFC3339, false, true ) ), 'The dates should be equal', 2 );
    3434        }
    3535
    3636        public function test_date_should_be_in_gmt_with_custom_timezone_setting_and_timestamp() {
  • tests/phpunit/tests/post/revisions.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    532532                $now          = time();
    533533                for ( $j = 1; $j < 3; $j++ ) {
    534534                        // Manually modify dates to ensure they're different.
    535                         $date                                  = date( 'Y-m-d H:i:s', $now - ( $j * 10 ) );
     535                        $date                                  = gmdate( 'Y-m-d H:i:s', $now - ( $j * 10 ) );
    536536                        $post_revision_fields['post_date']     = $date;
    537537                        $post_revision_fields['post_date_gmt'] = $date;
    538538
     
    563563                $post_revision_fields = wp_slash( $post_revision_fields );
    564564
    565565                $revision_ids = array();
    566                 $date         = date( 'Y-m-d H:i:s', time() - 10 );
     566                $date         = gmdate( 'Y-m-d H:i:s', time() - 10 );
    567567                for ( $j = 1; $j < 3; $j++ ) {
    568568                        // Manually modify dates to ensure they're the same.
    569569                        $post_revision_fields['post_date']     = $date;
  • src/wp-includes/IXR/class-IXR-server.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    151151            header('Content-Type: text/xml; charset='.$charset);
    152152        else
    153153            header('Content-Type: text/xml');
    154         header('Date: '.date('r'));
     154        header('Date: '.gmdate('r'));
    155155        echo $xml;
    156156        exit;
    157157    }
  • src/wp-includes/comment.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    337337                        $comment_modified_date = $wpdb->get_var( "SELECT comment_date FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1" );
    338338                        break;
    339339                case 'server':
    340                         $add_seconds_server = date( 'Z' );
     340                        $add_seconds_server = gmdate( 'Z' );
    341341
    342342                        $comment_modified_date = $wpdb->get_var( $wpdb->prepare( "SELECT DATE_ADD(comment_date_gmt, INTERVAL %s SECOND) FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 1", $add_seconds_server ) );
    343343                        break;
  • src/wp-includes/IXR/class-IXR-date.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    3737
    3838    function parseTimestamp($timestamp)
    3939    {
    40         $this->year = date('Y', $timestamp);
    41         $this->month = date('m', $timestamp);
    42         $this->day = date('d', $timestamp);
    43         $this->hour = date('H', $timestamp);
    44         $this->minute = date('i', $timestamp);
    45         $this->second = date('s', $timestamp);
     40        $this->year = gmdate('Y', $timestamp);
     41        $this->month = gmdate('m', $timestamp);
     42        $this->day = gmdate('d', $timestamp);
     43        $this->hour = gmdate('H', $timestamp);
     44        $this->minute = gmdate('i', $timestamp);
     45        $this->second = gmdate('s', $timestamp);
    4646        $this->timezone = '';
    4747    }
    4848
  • tests/phpunit/tests/basic.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1313
    1414                $license = file_get_contents( ABSPATH . 'license.txt' );
    1515                preg_match( '#Copyright 2011-(\d+) by the contributors#', $license, $matches );
    16                 $this_year = date( 'Y' );
     16                $this_year = gmdate( 'Y' );
    1717                $this->assertEquals( $this_year, trim( $matches[1] ), "license.txt's year needs to be updated to $this_year." );
    1818        }
    1919
  • tests/phpunit/tests/comment-submission.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    133133
    134134                $post = self::factory()->post->create_and_get(
    135135                        array(
    136                                 'post_date' => date( 'Y-m-d H:i:s', strtotime( '+1 day' ) ),
     136                                'post_date' => gmdate( 'Y-m-d H:i:s', strtotime( '+1 day' ) ),
    137137                        )
    138138                );
    139139
  • tests/phpunit/tests/query/stickies.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1212                // Set post times to get a reliable order.
    1313                $now = time();
    1414                for ( $i = 0; $i <= 22; $i++ ) {
    15                         $post_date         = date( 'Y-m-d H:i:s', $now - ( 10 * $i ) );
     15                        $post_date         = gmdate( 'Y-m-d H:i:s', $now - ( 10 * $i ) );
    1616                        self::$posts[ $i ] = $factory->post->create(
    1717                                array(
    1818                                        'post_date' => $post_date,
     
    2828        public function test_stickies_should_be_ignored_when_is_home_is_false() {
    2929                $q = new WP_Query(
    3030                        array(
    31                                 'year'           => date( 'Y' ),
     31                                'year'           => gmdate( 'Y' ),
    3232                                'fields'         => 'ids',
    3333                                'posts_per_page' => 3,
    3434                        )
  • src/wp-admin/options-permalink.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    202202        </tr>
    203203        <tr>
    204204                <th><label><input name="selection" type="radio" value="<?php echo esc_attr( $structures[1] ); ?>" <?php checked( $structures[1], $permalink_structure ); ?> /> <?php _e( 'Day and name' ); ?></label></th>
    205                 <td><code><?php echo get_option( 'home' ) . $blog_prefix . $prefix . '/' . date( 'Y' ) . '/' . date( 'm' ) . '/' . date( 'd' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
     205                <td><code><?php echo get_option( 'home' ) . $blog_prefix . $prefix . '/' . gmdate( 'Y' ) . '/' . gmdate( 'm' ) . '/' . gmdate( 'd' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
    206206        </tr>
    207207        <tr>
    208208                <th><label><input name="selection" type="radio" value="<?php echo esc_attr( $structures[2] ); ?>" <?php checked( $structures[2], $permalink_structure ); ?> /> <?php _e( 'Month and name' ); ?></label></th>
    209                 <td><code><?php echo get_option( 'home' ) . $blog_prefix . $prefix . '/' . date( 'Y' ) . '/' . date( 'm' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
     209                <td><code><?php echo get_option( 'home' ) . $blog_prefix . $prefix . '/' . gmdate( 'Y' ) . '/' . gmdate( 'm' ) . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
    210210        </tr>
    211211        <tr>
    212212                <th><label><input name="selection" type="radio" value="<?php echo esc_attr( $structures[3] ); ?>" <?php checked( $structures[3], $permalink_structure ); ?> /> <?php _e( 'Numeric' ); ?></label></th>
  • src/wp-includes/post.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    60206020 * @param WP_Post $post_before The Previous Post Object
    60216021 */
    60226022function wp_check_for_changed_dates( $post_id, $post, $post_before ) {
    6023         $previous_date = date( 'Y-m-d', strtotime( $post_before->post_date ) );
    6024         $new_date      = date( 'Y-m-d', strtotime( $post->post_date ) );
     6023        $previous_date = gmdate( 'Y-m-d', strtotime( $post_before->post_date ) );
     6024        $new_date      = gmdate( 'Y-m-d', strtotime( $post->post_date ) );
    60256025        // Don't bother if it hasn't changed.
    60266026        if ( $new_date == $previous_date ) {
    60276027                return;
     
    62756275                        $date = $wpdb->get_var( "SELECT post_{$field} FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ({$post_types}) ORDER BY post_{$field}_gmt DESC LIMIT 1" );
    62766276                        break;
    62776277                case 'server':
    6278                         $add_seconds_server = date( 'Z' );
     6278                        $add_seconds_server = gmdate( 'Z' );
    62796279                        $date               = $wpdb->get_var( "SELECT DATE_ADD(post_{$field}_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ({$post_types}) ORDER BY post_{$field}_gmt DESC LIMIT 1" );
    62806280                        break;
    62816281        }
  • tests/phpunit/tests/comment/commentsTemplate.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1717                        array(
    1818                                'comment_post_ID'  => $p,
    1919                                'comment_content'  => '1',
    20                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     20                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    2121                        )
    2222                );
    2323                $comment_2 = self::factory()->comment->create(
    2424                        array(
    2525                                'comment_post_ID'  => $p,
    2626                                'comment_content'  => '2',
    27                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     27                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    2828                        )
    2929                );
    3030
     
    5151                        array(
    5252                                'comment_post_ID'  => $p,
    5353                                'comment_content'  => '1',
    54                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     54                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    5555                        )
    5656                );
    5757                $comment_2 = self::factory()->comment->create(
    5858                        array(
    5959                                'comment_post_ID'  => $p,
    6060                                'comment_content'  => '2',
    61                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     61                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    6262                        )
    6363                );
    6464
     
    8585                        array(
    8686                                'comment_post_ID'  => $p,
    8787                                'comment_content'  => '1',
    88                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     88                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    8989                        )
    9090                );
    9191                $comment_2 = self::factory()->comment->create(
    9292                        array(
    9393                                'comment_post_ID'  => $p,
    9494                                'comment_content'  => '2',
    95                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     95                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    9696                        )
    9797                );
    9898
     
    119119                        array(
    120120                                'comment_post_ID'  => $p,
    121121                                'comment_content'  => '1',
    122                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     122                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    123123                        )
    124124                );
    125125                $comment_2 = self::factory()->comment->create(
    126126                        array(
    127127                                'comment_post_ID'  => $p,
    128128                                'comment_content'  => '2',
    129                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     129                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    130130                        )
    131131                );
    132132
     
    153153                        array(
    154154                                'comment_post_ID'  => $p,
    155155                                'comment_content'  => '1',
    156                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     156                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    157157                        )
    158158                );
    159159                $comment_2 = self::factory()->comment->create(
    160160                        array(
    161161                                'comment_post_ID'  => $p,
    162162                                'comment_content'  => '2',
    163                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     163                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    164164                        )
    165165                );
    166166                $comment_3 = self::factory()->comment->create(
    167167                        array(
    168168                                'comment_post_ID'  => $p,
    169169                                'comment_content'  => '3',
    170                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     170                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    171171                        )
    172172                );
    173173                $comment_4 = self::factory()->comment->create(
    174174                        array(
    175175                                'comment_post_ID'  => $p,
    176176                                'comment_content'  => '4',
    177                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     177                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    178178                        )
    179179                );
    180180                $comment_5 = self::factory()->comment->create(
    181181                        array(
    182182                                'comment_post_ID'  => $p,
    183183                                'comment_content'  => '3',
    184                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 500 ),
     184                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
    185185                        )
    186186                );
    187187                $comment_6 = self::factory()->comment->create(
    188188                        array(
    189189                                'comment_post_ID'  => $p,
    190190                                'comment_content'  => '4',
    191                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 600 ),
     191                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
    192192                        )
    193193                );
    194194
     
    224224                        array(
    225225                                'comment_post_ID'  => $p,
    226226                                'comment_content'  => '1',
    227                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     227                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    228228                        )
    229229                );
    230230                $comment_2 = self::factory()->comment->create(
    231231                        array(
    232232                                'comment_post_ID'  => $p,
    233233                                'comment_content'  => '2',
    234                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     234                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    235235                        )
    236236                );
    237237                $comment_3 = self::factory()->comment->create(
    238238                        array(
    239239                                'comment_post_ID'  => $p,
    240240                                'comment_content'  => '3',
    241                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     241                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    242242                        )
    243243                );
    244244                $comment_4 = self::factory()->comment->create(
    245245                        array(
    246246                                'comment_post_ID'  => $p,
    247247                                'comment_content'  => '4',
    248                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     248                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    249249                        )
    250250                );
    251251                $comment_5 = self::factory()->comment->create(
    252252                        array(
    253253                                'comment_post_ID'  => $p,
    254254                                'comment_content'  => '3',
    255                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 500 ),
     255                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
    256256                        )
    257257                );
    258258                $comment_6 = self::factory()->comment->create(
    259259                        array(
    260260                                'comment_post_ID'  => $p,
    261261                                'comment_content'  => '4',
    262                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 600 ),
     262                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
    263263                        )
    264264                );
    265265
     
    295295                        array(
    296296                                'comment_post_ID'  => $p,
    297297                                'comment_content'  => '1',
    298                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     298                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    299299                        )
    300300                );
    301301                $comment_2 = self::factory()->comment->create(
    302302                        array(
    303303                                'comment_post_ID'  => $p,
    304304                                'comment_content'  => '2',
    305                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     305                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    306306                        )
    307307                );
    308308                $comment_3 = self::factory()->comment->create(
    309309                        array(
    310310                                'comment_post_ID'  => $p,
    311311                                'comment_content'  => '3',
    312                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     312                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    313313                        )
    314314                );
    315315                $comment_4 = self::factory()->comment->create(
    316316                        array(
    317317                                'comment_post_ID'  => $p,
    318318                                'comment_content'  => '4',
    319                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     319                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    320320                        )
    321321                );
    322322
     
    352352                        array(
    353353                                'comment_post_ID'  => $p,
    354354                                'comment_content'  => '1',
    355                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     355                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    356356                        )
    357357                );
    358358                $comment_2 = self::factory()->comment->create(
    359359                        array(
    360360                                'comment_post_ID'  => $p,
    361361                                'comment_content'  => '2',
    362                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     362                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    363363                        )
    364364                );
    365365                $comment_3 = self::factory()->comment->create(
    366366                        array(
    367367                                'comment_post_ID'  => $p,
    368368                                'comment_content'  => '3',
    369                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     369                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    370370                        )
    371371                );
    372372                $comment_4 = self::factory()->comment->create(
    373373                        array(
    374374                                'comment_post_ID'  => $p,
    375375                                'comment_content'  => '4',
    376                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     376                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    377377                        )
    378378                );
    379379
     
    411411                        array(
    412412                                'comment_post_ID'  => $p,
    413413                                'comment_content'  => '1',
    414                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     414                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    415415                        )
    416416                );
    417417                $comment_2 = self::factory()->comment->create(
    418418                        array(
    419419                                'comment_post_ID'  => $p,
    420420                                'comment_content'  => '2',
    421                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     421                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    422422                        )
    423423                );
    424424                $comment_3 = self::factory()->comment->create(
    425425                        array(
    426426                                'comment_post_ID'  => $p,
    427427                                'comment_content'  => '3',
    428                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     428                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    429429                        )
    430430                );
    431431
     
    463463                        array(
    464464                                'comment_post_ID'  => $p,
    465465                                'comment_content'  => '1',
    466                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     466                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    467467                        )
    468468                );
    469469                $comment_2 = self::factory()->comment->create(
    470470                        array(
    471471                                'comment_post_ID'  => $p,
    472472                                'comment_content'  => '2',
    473                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     473                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    474474                        )
    475475                );
    476476                $comment_3 = self::factory()->comment->create(
    477477                        array(
    478478                                'comment_post_ID'  => $p,
    479479                                'comment_content'  => '3',
    480                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     480                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    481481                        )
    482482                );
    483483
     
    513513                        array(
    514514                                'comment_post_ID'  => $p,
    515515                                'comment_content'  => '1',
    516                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     516                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    517517                        )
    518518                );
    519519                $comment_2 = self::factory()->comment->create(
    520520                        array(
    521521                                'comment_post_ID'  => $p,
    522522                                'comment_content'  => '2',
    523                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     523                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    524524                        )
    525525                );
    526526                $comment_3 = self::factory()->comment->create(
    527527                        array(
    528528                                'comment_post_ID'  => $p,
    529529                                'comment_content'  => '3',
    530                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     530                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    531531                        )
    532532                );
    533533                $comment_4 = self::factory()->comment->create(
    534534                        array(
    535535                                'comment_post_ID'  => $p,
    536536                                'comment_content'  => '4',
    537                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     537                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    538538                        )
    539539                );
    540540
     
    592592                        array(
    593593                                'comment_post_ID'  => $p,
    594594                                'comment_content'  => '1',
    595                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     595                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    596596                        )
    597597                );
    598598                $comment_2 = self::factory()->comment->create(
    599599                        array(
    600600                                'comment_post_ID'  => $p,
    601601                                'comment_content'  => '2',
    602                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     602                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    603603                        )
    604604                );
    605605                $comment_3 = self::factory()->comment->create(
    606606                        array(
    607607                                'comment_post_ID'  => $p,
    608608                                'comment_content'  => '3',
    609                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     609                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    610610                        )
    611611                );
    612612                $comment_4 = self::factory()->comment->create(
    613613                        array(
    614614                                'comment_post_ID'  => $p,
    615615                                'comment_content'  => '4',
    616                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     616                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    617617                        )
    618618                );
    619619                $comment_5 = self::factory()->comment->create(
    620620                        array(
    621621                                'comment_post_ID'  => $p,
    622622                                'comment_content'  => '4',
    623                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 500 ),
     623                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
    624624                        )
    625625                );
    626626                $comment_6 = self::factory()->comment->create(
    627627                        array(
    628628                                'comment_post_ID'  => $p,
    629629                                'comment_content'  => '4',
    630                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 600 ),
     630                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
    631631                        )
    632632                );
    633633
     
    706706                                'comment_post_ID'  => $p,
    707707                                'comment_content'  => '1',
    708708                                'comment_approved' => '0',
    709                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     709                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    710710                        )
    711711                );
    712712                $comment_2 = self::factory()->comment->create(
     
    714714                                'comment_post_ID'  => $p,
    715715                                'comment_content'  => '2',
    716716                                'comment_approved' => '0',
    717                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     717                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    718718                        )
    719719                );
    720720                $comment_3 = self::factory()->comment->create(
     
    722722                                'comment_post_ID'  => $p,
    723723                                'comment_content'  => '3',
    724724                                'comment_approved' => '0',
    725                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     725                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    726726                        )
    727727                );
    728728                $comment_4 = self::factory()->comment->create(
     
    730730                                'comment_post_ID'  => $p,
    731731                                'comment_content'  => '4',
    732732                                'comment_approved' => '1',
    733                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     733                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    734734                        )
    735735                );
    736736
     
    762762                                'comment_post_ID'  => $p,
    763763                                'comment_content'  => '1',
    764764                                'comment_approved' => '0',
    765                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     765                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    766766                        )
    767767                );
    768768                $comment_2 = self::factory()->comment->create(
     
    770770                                'comment_post_ID'  => $p,
    771771                                'comment_content'  => '2',
    772772                                'comment_approved' => '0',
    773                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     773                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    774774                        )
    775775                );
    776776                $comment_3 = self::factory()->comment->create(
     
    778778                                'comment_post_ID'      => $p,
    779779                                'comment_content'      => '3',
    780780                                'comment_approved'     => '0',
    781                                 'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now - 100 ),
     781                                'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    782782                                'comment_author_email' => $comment_author_email,
    783783                        )
    784784                );
     
    787787                                'comment_post_ID'      => $p,
    788788                                'comment_content'      => '4',
    789789                                'comment_approved'     => '0',
    790                                 'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now - 200 ),
     790                                'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    791791                                'comment_author_email' => $comment_author_email,
    792792                        )
    793793                );
     
    796796                                'comment_post_ID'      => $p,
    797797                                'comment_content'      => '5',
    798798                                'comment_approved'     => '0',
    799                                 'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now - 300 ),
     799                                'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    800800                                'comment_author_email' => $comment_author_email,
    801801                        )
    802802                );
     
    805805                                'comment_post_ID'  => $p,
    806806                                'comment_content'  => '6',
    807807                                'comment_approved' => '1',
    808                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     808                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    809809                        )
    810810                );
    811811
     
    842842                                'comment_post_ID'      => $p,
    843843                                'comment_content'      => '1',
    844844                                'comment_approved'     => '0',
    845                                 'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now ),
     845                                'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now ),
    846846                                'comment_author_email' => 'foo@bar.mail',
    847847                        )
    848848                );
     
    878878                                'comment_post_ID'  => $p,
    879879                                'comment_content'  => '1',
    880880                                'comment_approved' => '1',
    881                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     881                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    882882                        )
    883883                );
    884884                $comment_2 = self::factory()->comment->create(
     
    886886                                'comment_post_ID'  => $p,
    887887                                'comment_content'  => '2',
    888888                                'comment_approved' => '1',
    889                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     889                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    890890                        )
    891891                );
    892892                $comment_3 = self::factory()->comment->create(
     
    895895                                'comment_content'  => '3',
    896896                                'comment_approved' => '1',
    897897                                'comment_parent'   => $comment_1,
    898                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     898                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    899899                        )
    900900                );
    901901
     
    923923                                'comment_post_ID'  => $p,
    924924                                'comment_content'  => '1',
    925925                                'comment_approved' => '1',
    926                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     926                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    927927                        )
    928928                );
    929929                $comment_2 = self::factory()->comment->create(
     
    931931                                'comment_post_ID'  => $p,
    932932                                'comment_content'  => '2',
    933933                                'comment_approved' => '1',
    934                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     934                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    935935                        )
    936936                );
    937937                $comment_3 = self::factory()->comment->create(
     
    940940                                'comment_content'  => '3',
    941941                                'comment_approved' => '1',
    942942                                'comment_parent'   => $comment_1,
    943                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     943                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    944944                        )
    945945                );
    946946
  • src/wp-admin/includes/ajax-actions.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    14761476                        $post_data['post_status'] = 'draft';
    14771477                        $now                      = time();
    14781478                        /* translators: 1: Post creation date, 2: Post creation time */
    1479                         $post_data['post_title'] = sprintf( __( 'Draft created on %1$s at %2$s' ), date( __( 'F j, Y' ), $now ), date( __( 'g:i a' ), $now ) );
     1479                        $post_data['post_title'] = sprintf( __( 'Draft created on %1$s at %2$s' ), gmdate( __( 'F j, Y' ), $now ), gmdate( __( 'g:i a' ), $now ) );
    14801480
    14811481                        $pid = edit_post( $post_data );
    14821482                        if ( $pid ) {
  • tests/phpunit/tests/comment/wpAllowComment.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    4242                        'comment_content'      => 'Yes, we can!',
    4343                        'comment_author_IP'    => '192.168.0.1',
    4444                        'comment_parent'       => 0,
    45                         'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now ),
     45                        'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now ),
    4646                        'comment_agent'        => 'Bobbot/2.1',
    4747                        'comment_type'         => '',
    4848                );
     
    6565                        'comment_content'      => 'Yes, we can!',
    6666                        'comment_author_IP'    => '192.168.0.1',
    6767                        'comment_parent'       => 0,
    68                         'comment_date_gmt'     => date( 'Y-m-d H:i:s', $now ),
     68                        'comment_date_gmt'     => gmdate( 'Y-m-d H:i:s', $now ),
    6969                        'comment_agent'        => 'Bobbot/2.1',
    7070                        'comment_type'         => '',
    7171                );
  • tests/phpunit/tests/comment/metaCache.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    142142                        $comments[] = self::factory()->comment->create(
    143143                                array(
    144144                                        'comment_post_ID'  => $posts[0],
    145                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( 60 * $i ) ),
     145                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( 60 * $i ) ),
    146146                                )
    147147                        );
    148148                }
     
    190190                        $comments[] = self::factory()->comment->create(
    191191                                array(
    192192                                        'comment_post_ID'  => $posts[0],
    193                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( 60 * $i ) ),
     193                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( 60 * $i ) ),
    194194                                )
    195195                        );
    196196                }
  • tests/phpunit/tests/comment/wpListComments.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1616                        $comments[] = self::factory()->comment->create(
    1717                                array(
    1818                                        'comment_post_ID'  => $p,
    19                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     19                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    2020                                        'comment_author'   => 'Commenter ' . $i,
    2121                                )
    2222                        );
     
    5454                        $comments[] = self::factory()->comment->create(
    5555                                array(
    5656                                        'comment_post_ID'  => $p,
    57                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     57                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    5858                                        'comment_author'   => 'Commenter ' . $i,
    5959                                )
    6060                        );
     
    9292                        $comments[] = self::factory()->comment->create(
    9393                                array(
    9494                                        'comment_post_ID'  => $p,
    95                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     95                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    9696                                        'comment_author'   => 'Commenter ' . $i,
    9797                                )
    9898                        );
     
    138138                        $comments[] = self::factory()->comment->create(
    139139                                array(
    140140                                        'comment_post_ID'  => $p,
    141                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     141                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    142142                                        'comment_author'   => 'Commenter ' . $i,
    143143                                )
    144144                        );
     
    178178                        $comments[] = self::factory()->comment->create(
    179179                                array(
    180180                                        'comment_post_ID'  => $p,
    181                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     181                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    182182                                        'comment_author'   => 'Commenter ' . $i,
    183183                                )
    184184                        );
     
    223223                        $comments[] = self::factory()->comment->create(
    224224                                array(
    225225                                        'comment_post_ID'  => $p,
    226                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - $i ),
     226                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - $i ),
    227227                                        'comment_author'   => 'Commenter ' . $i,
    228228                                        'user_id'          => $u,
    229229                                )
  • src/wp-includes/bookmark-template.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    8787                                $title .= ' (';
    8888                                $title .= sprintf(
    8989                                        __( 'Last updated: %s' ),
    90                                         date(
     90                                        gmdate(
    9191                                                get_option( 'links_updated_date_format' ),
    9292                                                $bookmark->link_updated_f + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS )
    9393                                        )
  • src/wp-includes/formatting.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    34303430        if ( $tz ) {
    34313431                $datetime = date_create( $string, new DateTimeZone( 'UTC' ) );
    34323432                if ( ! $datetime ) {
    3433                         return date( $format, 0 );
     3433                        return gmdate( $format, 0 );
    34343434                }
    34353435                $datetime->setTimezone( new DateTimeZone( $tz ) );
    34363436                $string_localtime = $datetime->format( $format );
    34373437        } else {
    34383438                if ( ! preg_match( '#([0-9]{1,4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})#', $string, $matches ) ) {
    3439                         return date( $format, 0 );
     3439                        return gmdate( $format, 0 );
    34403440                }
    34413441                $string_time      = gmmktime( $matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1] );
    34423442                $string_localtime = gmdate( $format, $string_time + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
  • tests/phpunit/tests/comment/getCommentLink.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1515                        array(
    1616                                'comment_post_ID'  => self::$p,
    1717                                'comment_content'  => '1',
    18                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),
     18                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ),
    1919                        )
    2020                );
    2121                self::$comments[] = self::factory()->comment->create(
    2222                        array(
    2323                                'comment_post_ID'  => self::$p,
    2424                                'comment_content'  => '2',
    25                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),
     25                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ),
    2626                        )
    2727                );
    2828                self::$comments[] = self::factory()->comment->create(
    2929                        array(
    3030                                'comment_post_ID'  => self::$p,
    3131                                'comment_content'  => '3',
    32                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),
     32                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ),
    3333                        )
    3434                );
    3535                self::$comments[] = self::factory()->comment->create(
    3636                        array(
    3737                                'comment_post_ID'  => self::$p,
    3838                                'comment_content'  => '4',
    39                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),
     39                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ),
    4040                        )
    4141                );
    4242                self::$comments[] = self::factory()->comment->create(
    4343                        array(
    4444                                'comment_post_ID'  => self::$p,
    4545                                'comment_content'  => '4',
    46                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 500 ),
     46                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ),
    4747                        )
    4848                );
    4949                self::$comments[] = self::factory()->comment->create(
    5050                        array(
    5151                                'comment_post_ID'  => self::$p,
    5252                                'comment_content'  => '4',
    53                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 600 ),
     53                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ),
    5454                        )
    5555                );
    5656
  • src/wp-includes/deprecated.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    960960
    961961                if ( $show_updated )
    962962                        if (substr($row->link_updated_f, 0, 2) != '00')
    963                                 $title .= ' ('.__('Last updated') . ' ' . date(get_option('links_updated_date_format'), $row->link_updated_f + (get_option('gmt_offset') * HOUR_IN_SECONDS)) . ')';
     963                                $title .= ' ('.__('Last updated') . ' ' . gmdate(get_option('links_updated_date_format'), $row->link_updated_f + (get_option('gmt_offset') * HOUR_IN_SECONDS)) . ')';
    964964
    965965                if ( '' != $title )
    966966                        $title = ' title="' . $title . '"';
  • tests/phpunit/tests/comment/getPageOfComment.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    4545                                array(
    4646                                        'comment_post_ID'  => $p,
    4747                                        'comment_type'     => 'trackback',
    48                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     48                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    4949                                )
    5050                        );
    5151                        $now             -= 10 * $i;
     
    5757                                array(
    5858                                        'comment_post_ID'  => $p,
    5959                                        'comment_type'     => 'pingback',
    60                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     60                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    6161                                )
    6262                        );
    6363                        $now            -= 10 * $i;
     
    135135                                array(
    136136                                        'comment_post_ID'  => $p,
    137137                                        'comment_type'     => 'trackback',
    138                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( 10 * $i ) ),
     138                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( 10 * $i ) ),
    139139                                )
    140140                        );
    141141                }
     
    226226                $c1 = self::factory()->comment->create(
    227227                        array(
    228228                                'comment_post_ID'  => $p,
    229                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     229                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    230230                        )
    231231                );
    232232                $c2 = self::factory()->comment->create(
    233233                        array(
    234234                                'comment_post_ID'  => $p,
    235                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     235                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    236236                        )
    237237                );
    238238                $c3 = self::factory()->comment->create(
    239239                        array(
    240240                                'comment_post_ID'  => $p,
    241241                                'comment_approved' => 0,
    242                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     242                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    243243                        )
    244244                );
    245245
     
    262262                        $comments_0[] = self::factory()->comment->create(
    263263                                array(
    264264                                        'comment_post_ID'  => $posts[0],
    265                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
     265                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
    266266                                )
    267267                        );
    268268                        $comments_1[] = self::factory()->comment->create(
    269269                                array(
    270270                                        'comment_post_ID'  => $posts[1],
    271                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
     271                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
    272272                                )
    273273                        );
    274274                }
     
    292292                        $parent                = self::factory()->comment->create(
    293293                                array(
    294294                                        'comment_post_ID'  => $post,
    295                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
     295                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( $i * 60 ) ),
    296296                                )
    297297                        );
    298298                        $comment_parents[ $i ] = $parent;
     
    300300                        $child                  = self::factory()->comment->create(
    301301                                array(
    302302                                        'comment_post_ID'  => $post,
    303                                         'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - ( $i * 59 ) ),
     303                                        'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - ( $i * 59 ) ),
    304304                                        'comment_parent'   => $parent,
    305305                                )
    306306                        );
     
    336336                $c1 = self::factory()->comment->create(
    337337                        array(
    338338                                'comment_post_ID'  => $p,
    339                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     339                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    340340                        )
    341341                );
    342342                $c2 = self::factory()->comment->create(
    343343                        array(
    344344                                'comment_post_ID'  => $p,
    345                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     345                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    346346                        )
    347347                );
    348348                $c3 = self::factory()->comment->create(
    349349                        array(
    350350                                'comment_post_ID'  => $p,
    351                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     351                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    352352                        )
    353353                );
    354354
     
    369369                $c1 = self::factory()->comment->create(
    370370                        array(
    371371                                'comment_post_ID'  => $p,
    372                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     372                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    373373                        )
    374374                );
    375375                $c2 = self::factory()->comment->create(
    376376                        array(
    377377                                'comment_post_ID'  => $p,
    378                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     378                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    379379                        )
    380380                );
    381381                $c3 = self::factory()->comment->create(
    382382                        array(
    383383                                'comment_post_ID'  => $p,
    384                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     384                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    385385                        )
    386386                );
    387387                $c4 = self::factory()->comment->create(
    388388                        array(
    389389                                'comment_post_ID'  => $p,
    390                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 40 ),
     390                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 40 ),
    391391                        )
    392392                );
    393393
     
    409409                $c1 = self::factory()->comment->create(
    410410                        array(
    411411                                'comment_post_ID'  => $p,
    412                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now ),
     412                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now ),
    413413                        )
    414414                );
    415415                $c2 = self::factory()->comment->create(
    416416                        array(
    417417                                'comment_post_ID'  => $p,
    418                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     418                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    419419                        )
    420420                );
    421421                $c3 = self::factory()->comment->create(
    422422                        array(
    423423                                'comment_post_ID'  => $p,
    424                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     424                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    425425                        )
    426426                );
    427427                $c4 = self::factory()->comment->create(
    428428                        array(
    429429                                'comment_post_ID'  => $p,
    430                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 40 ),
     430                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 40 ),
    431431                        )
    432432                );
    433433
  • src/wp-includes/general-template.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    21072107        }
    21082108
    21092109        $unixmonth = mktime( 0, 0, 0, $thismonth, 1, $thisyear );
    2110         $last_day  = date( 't', $unixmonth );
     2110        $last_day  = gmdate( 't', $unixmonth );
    21112111
    21122112        // Get the next and previous month and year with at least one post
    21132113        $previous = $wpdb->get_row(
     
    21332133        <caption>' . sprintf(
    21342134                $calendar_caption,
    21352135                $wp_locale->get_month( $thismonth ),
    2136                 date( 'Y', $unixmonth )
     2136                gmdate( 'Y', $unixmonth )
    21372137        ) . '</caption>
    21382138        <thead>
    21392139        <tr>';
     
    21992199        }
    22002200
    22012201        // See how much we should pad in the beginning
    2202         $pad = calendar_week_mod( date( 'w', $unixmonth ) - $week_begins );
     2202        $pad = calendar_week_mod( gmdate( 'w', $unixmonth ) - $week_begins );
    22032203        if ( 0 != $pad ) {
    22042204                $calendar_output .= "\n\t\t" . '<td colspan="' . esc_attr( $pad ) . '" class="pad">&nbsp;</td>';
    22052205        }
    22062206
    22072207        $newrow      = false;
    2208         $daysinmonth = (int) date( 't', $unixmonth );
     2208        $daysinmonth = (int) gmdate( 't', $unixmonth );
    22092209
    22102210        for ( $day = 1; $day <= $daysinmonth; ++$day ) {
    22112211                if ( isset( $newrow ) && $newrow ) {
     
    22232223
    22242224                if ( in_array( $day, $daywithpost ) ) {
    22252225                        // any posts today?
    2226                         $date_format = date( _x( 'F j, Y', 'daily archives date format' ), strtotime( "{$thisyear}-{$thismonth}-{$day}" ) );
     2226                        $date_format = gmdate( _x( 'F j, Y', 'daily archives date format' ), strtotime( "{$thisyear}-{$thismonth}-{$day}" ) );
    22272227                        /* translators: Post calendar label. %s: Date */
    22282228                        $label            = sprintf( __( 'Posts published on %s' ), $date_format );
    22292229                        $calendar_output .= sprintf(
     
    22372237                }
    22382238                $calendar_output .= '</td>';
    22392239
    2240                 if ( 6 == calendar_week_mod( date( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins ) ) {
     2240                if ( 6 == calendar_week_mod( gmdate( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins ) ) {
    22412241                        $newrow = true;
    22422242                }
    22432243        }
    22442244
    2245         $pad = 7 - calendar_week_mod( date( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins );
     2245        $pad = 7 - calendar_week_mod( gmdate( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins );
    22462246        if ( $pad != 0 && $pad != 7 ) {
    22472247                $calendar_output .= "\n\t\t" . '<td class="pad" colspan="' . esc_attr( $pad ) . '">&nbsp;</td>';
    22482248        }
     
    44344434                        $gen = '<!-- generator="WordPress/' . esc_attr( get_bloginfo( 'version' ) ) . '" -->';
    44354435                        break;
    44364436                case 'export':
    4437                         $gen = '<!-- generator="WordPress/' . esc_attr( get_bloginfo_rss( 'version' ) ) . '" created="' . date( 'Y-m-d H:i' ) . '" -->';
     4437                        $gen = '<!-- generator="WordPress/' . esc_attr( get_bloginfo_rss( 'version' ) ) . '" created="' . gmdate( 'Y-m-d H:i' ) . '" -->';
    44384438                        break;
    44394439        }
    44404440
  • src/wp-admin/includes/upgrade.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    941941
    942942        $time_difference = $all_options->time_difference;
    943943
    944                 $server_time = time() + date( 'Z' );
     944                $server_time = time() + gmdate( 'Z' );
    945945        $weblogger_time  = $server_time + $time_difference * HOUR_IN_SECONDS;
    946946        $gmt_time        = time();
    947947
  • tests/phpunit/tests/multisite/wpmuValidateUserSignup.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    9999                        remove_filter( 'wpmu_signup_user_notification', '__return_true' );
    100100
    101101                        global $wpdb;
    102                         $date = date( 'Y-m-d H:i:s', time() - ( 2 * DAY_IN_SECONDS ) - 60 );
     102                        $date = gmdate( 'Y-m-d H:i:s', time() - ( 2 * DAY_IN_SECONDS ) - 60 );
    103103                        $wpdb->update( $wpdb->signups, array( 'registered' => $date ), array( 'user_login' => 'foo123' ) );
    104104
    105105                        $v = wpmu_validate_user_signup( 'foo123', 'foo2@example.com' );
     
    123123                        remove_filter( 'wpmu_signup_user_notification', '__return_true' );
    124124
    125125                        global $wpdb;
    126                         $date = date( 'Y-m-d H:i:s', time() - ( 2 * DAY_IN_SECONDS ) - 60 );
     126                        $date = gmdate( 'Y-m-d H:i:s', time() - ( 2 * DAY_IN_SECONDS ) - 60 );
    127127                        $wpdb->update( $wpdb->signups, array( 'registered' => $date ), array( 'user_login' => 'foo123' ) );
    128128
    129129                        $v = wpmu_validate_user_signup( 'foo2', 'foo2@example.com' );
  • src/wp-admin/includes/export.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    7979        if ( ! empty( $sitename ) ) {
    8080                $sitename .= '.';
    8181        }
    82         $date        = date( 'Y-m-d' );
     82        $date        = gmdate( 'Y-m-d' );
    8383        $wp_filename = $sitename . 'WordPress.' . $date . '.xml';
    8484        /**
    8585         * Filters the export filename.
     
    129129                }
    130130
    131131                if ( $args['start_date'] ) {
    132                         $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_date >= %s", date( 'Y-m-d', strtotime( $args['start_date'] ) ) );
     132                        $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_date >= %s", gmdate( 'Y-m-d', strtotime( $args['start_date'] ) ) );
    133133                }
    134134
    135135                if ( $args['end_date'] ) {
    136                         $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_date < %s", date( 'Y-m-d', strtotime( '+1 month', strtotime( $args['end_date'] ) ) ) );
     136                        $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_date < %s", gmdate( 'Y-m-d', strtotime( '+1 month', strtotime( $args['end_date'] ) ) ) );
    137137                }
    138138        }
    139139
     
    458458        <title><?php bloginfo_rss( 'name' ); ?></title>
    459459        <link><?php bloginfo_rss( 'url' ); ?></link>
    460460        <description><?php bloginfo_rss( 'description' ); ?></description>
    461         <pubDate><?php echo date( 'D, d M Y H:i:s +0000' ); ?></pubDate>
     461        <pubDate><?php echo gmdate( 'D, d M Y H:i:s +0000' ); ?></pubDate>
    462462        <language><?php bloginfo_rss( 'language' ); ?></language>
    463463        <wp:wxr_version><?php echo WXR_VERSION; ?></wp:wxr_version>
    464464        <wp:base_site_url><?php echo wxr_site_url(); ?></wp:base_site_url>
  • src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    14781478                        // based on the `post_modified` field with the site's timezone
    14791479                        // offset applied.
    14801480                        if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) {
    1481                                 $post_modified_gmt = date( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) );
     1481                                $post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) );
    14821482                        } else {
    14831483                                $post_modified_gmt = $post->post_modified_gmt;
    14841484                        }
  • tests/phpunit/tests/admin/includesPost.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    355355                $permalink_structure = '%postname%';
    356356                $this->set_permalink_structure( "/$permalink_structure/" );
    357357
    358                 $future_date = date( 'Y-m-d H:i:s', time() + 100 );
     358                $future_date = gmdate( 'Y-m-d H:i:s', time() + 100 );
    359359                $p           = self::factory()->post->create(
    360360                        array(
    361361                                'post_status' => 'future',
     
    377377        public function test_get_sample_permalink_html_should_use_default_permalink_for_view_post_link_when_pretty_permalinks_are_disabled() {
    378378                wp_set_current_user( self::$admin_id );
    379379
    380                 $future_date = date( 'Y-m-d H:i:s', time() + 100 );
     380                $future_date = gmdate( 'Y-m-d H:i:s', time() + 100 );
    381381                $p           = self::factory()->post->create(
    382382                        array(
    383383                                'post_status' => 'future',
     
    400400
    401401                wp_set_current_user( self::$admin_id );
    402402
    403                 $future_date = date( 'Y-m-d H:i:s', time() + 100 );
     403                $future_date = gmdate( 'Y-m-d H:i:s', time() + 100 );
    404404                $p           = self::factory()->post->create(
    405405                        array(
    406406                                'post_status' => 'future',
     
    464464                $this->assertContains( '>new_slug-صورة<', $found, $message );
    465465
    466466                // Scheduled posts should use published permalink
    467                 $future_date = date( 'Y-m-d H:i:s', time() + 100 );
     467                $future_date = gmdate( 'Y-m-d H:i:s', time() + 100 );
    468468                $p           = self::factory()->post->create(
    469469                        array(
    470470                                'post_status' => 'future',
     
    507507
    508508                wp_set_current_user( self::$admin_id );
    509509
    510                 $future_date = date( 'Y-m-d H:i:s', time() + 100 );
     510                $future_date = gmdate( 'Y-m-d H:i:s', time() + 100 );
    511511                $p           = self::factory()->post->create(
    512512                        array(
    513513                                'post_status' => 'pending',
  • tests/phpunit/tests/admin/includesCommunityEvents.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    164164
    165165                $this->assertNotWPError( $response );
    166166                $this->assertEqualSetsWithIndex( $this->get_user_location(), $response['location'] );
    167                 $this->assertEquals( date( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $response['events'][0]['formatted_date'] );
     167                $this->assertEquals( gmdate( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $response['events'][0]['formatted_date'] );
    168168                $this->assertEquals( '1:00 pm', $response['events'][0]['formatted_time'] );
    169169
    170170                remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
     
    185185
    186186                $this->assertNotWPError( $cached_events );
    187187                $this->assertEqualSetsWithIndex( $this->get_user_location(), $cached_events['location'] );
    188                 $this->assertEquals( date( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $cached_events['events'][0]['formatted_date'] );
     188                $this->assertEquals( gmdate( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $cached_events['events'][0]['formatted_date'] );
    189189                $this->assertEquals( '1:00 pm', $cached_events['events'][0]['formatted_time'] );
    190190
    191191                remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
     
    211211                                                        'url'        => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
    212212                                                        'meetup'     => 'The East Bay WordPress Meetup Group',
    213213                                                        'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
    214                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Sunday 1pm' ) ),
     214                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Sunday 1pm' ) ),
    215215                                                        'location'   => array(
    216216                                                                'location'  => 'Oakland, CA, USA',
    217217                                                                'country'   => 'us',
     
    225225                                                        'url'        => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
    226226                                                        'meetup'     => 'WordPress Bay Area Foothills Group',
    227227                                                        'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
    228                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
     228                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
    229229                                                        'location'   => array(
    230230                                                                'location'  => 'Milpitas, CA, USA',
    231231                                                                'country'   => 'us',
     
    239239                                                        'url'        => 'https://2017.kansascity.wordcamp.org',
    240240                                                        'meetup'     => null,
    241241                                                        'meetup_url' => null,
    242                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Saturday' ) ),
     242                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Saturday' ) ),
    243243                                                        'location'   => array(
    244244                                                                'location'  => 'Kansas City, MO',
    245245                                                                'country'   => 'US',
     
    303303                                                        'url'        => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
    304304                                                        'meetup'     => 'The East Bay WordPress Meetup Group',
    305305                                                        'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
    306                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Monday 1pm' ) ),
     306                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Monday 1pm' ) ),
    307307                                                        'location'   => array(
    308308                                                                'location'  => 'Oakland, CA, USA',
    309309                                                                'country'   => 'us',
     
    317317                                                        'url'        => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
    318318                                                        'meetup'     => 'WordPress Bay Area Foothills Group',
    319319                                                        'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
    320                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Tuesday 1:30pm' ) ),
     320                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Tuesday 1:30pm' ) ),
    321321                                                        'location'   => array(
    322322                                                                'location'  => 'Milpitas, CA, USA',
    323323                                                                'country'   => 'us',
     
    331331                                                        'url'        => 'https://www.meetup.com/sanjosewp/events/245419844/',
    332332                                                        'meetup'     => 'The San Jose WordPress Meetup',
    333333                                                        'meetup_url' => 'https://www.meetup.com/sanjosewp/',
    334                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 5:30pm' ) ),
     334                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Wednesday 5:30pm' ) ),
    335335                                                        'location'   => array(
    336336                                                                'location'  => 'Milpitas, CA, USA',
    337337                                                                'country'   => 'us',
     
    345345                                                        'url'        => 'https://2018.sandiego.wordcamp.org',
    346346                                                        'meetup'     => null,
    347347                                                        'meetup_url' => null,
    348                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Thursday 9am' ) ),
     348                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Thursday 9am' ) ),
    349349                                                        'location'   => array(
    350350                                                                'location'  => 'San Diego, CA',
    351351                                                                'country'   => 'US',
     
    406406                                                        'url'        => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
    407407                                                        'meetup'     => 'The East Bay WordPress Meetup Group',
    408408                                                        'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
    409                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( '2 days ago' ) ),
     409                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( '2 days ago' ) ),
    410410                                                        'location'   => array(
    411411                                                                'location'  => 'Oakland, CA, USA',
    412412                                                                'country'   => 'us',
     
    420420                                                        'url'        => 'https://2018.sandiego.wordcamp.org',
    421421                                                        'meetup'     => null,
    422422                                                        'meetup_url' => null,
    423                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Tuesday 9am' ) ),
     423                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Tuesday 9am' ) ),
    424424                                                        'location'   => array(
    425425                                                                'location'  => 'San Diego, CA',
    426426                                                                'country'   => 'US',
     
    434434                                                        'url'        => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
    435435                                                        'meetup'     => 'WordPress Bay Area Foothills Group',
    436436                                                        'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
    437                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
     437                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
    438438                                                        'location'   => array(
    439439                                                                'location'  => 'Milpitas, CA, USA',
    440440                                                                'country'   => 'us',
     
    448448                                                        'url'        => 'https://www.meetup.com/sanjosewp/events/245419844/',
    449449                                                        'meetup'     => 'The San Jose WordPress Meetup',
    450450                                                        'meetup_url' => 'https://www.meetup.com/sanjosewp/',
    451                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Thursday 5:30pm' ) ),
     451                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Thursday 5:30pm' ) ),
    452452                                                        'location'   => array(
    453453                                                                'location'  => 'Milpitas, CA, USA',
    454454                                                                'country'   => 'us',
     
    462462                                                        'url'        => 'https://2018.la.wordcamp.org',
    463463                                                        'meetup'     => null,
    464464                                                        'meetup_url' => null,
    465                                                         'date'       => date( 'Y-m-d H:i:s', strtotime( 'next Friday 9am' ) ),
     465                                                        'date'       => gmdate( 'Y-m-d H:i:s', strtotime( 'next Friday 9am' ) ),
    466466                                                        'location'   => array(
    467467                                                                'location'  => 'Los Angeles, CA',
    468468                                                                'country'   => 'US',
  • src/wp-includes/link-template.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    212212                        $author     = $authordata->user_nicename;
    213213                }
    214214
    215                 $date           = explode( ' ', date( 'Y m d H i s', $unixtime ) );
     215                $date           = explode( ' ', gmdate( 'Y m d H i s', $unixtime ) );
    216216                $rewritereplace =
    217217                array(
    218218                        $date[0],
  • tests/phpunit/tests/functions/getArchives.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1515        function setUp() {
    1616                parent::setUp();
    1717
    18                 $this->month_url = get_month_link( date( 'Y' ), date( 'm' ) );
    19                 $this->year_url  = get_year_link( date( 'Y' ) );
     18                $this->month_url = get_month_link( gmdate( 'Y' ), gmdate( 'm' ) );
     19                $this->year_url  = get_year_link( gmdate( 'Y' ) );
    2020        }
    2121
    2222        public static function wpSetUpBeforeClass( $factory ) {
     
    3030        }
    3131
    3232        function test_wp_get_archives_default() {
    33                 $expected['default'] = "<li><a href='" . $this->month_url . "'>" . date( 'F Y' ) . '</a></li>';
     33                $expected['default'] = "<li><a href='" . $this->month_url . "'>" . gmdate( 'F Y' ) . '</a></li>';
    3434                $this->assertEquals( $expected['default'], trim( wp_get_archives( array( 'echo' => false ) ) ) );
    3535        }
    3636
    3737        function test_wp_get_archives_type() {
    38                 $expected['type'] = "<li><a href='" . $this->year_url . "'>" . date( 'Y' ) . '</a></li>';
     38                $expected['type'] = "<li><a href='" . $this->year_url . "'>" . gmdate( 'Y' ) . '</a></li>';
    3939                $this->assertEquals(
    4040                        $expected['type'],
    4141                        trim(
     
    8686        }
    8787
    8888        function test_wp_get_archives_format() {
    89                 $expected['format'] = "<option value='" . $this->month_url . "'> " . date( 'F Y' ) . ' </option>';
     89                $expected['format'] = "<option value='" . $this->month_url . "'> " . gmdate( 'F Y' ) . ' </option>';
    9090                $this->assertEquals(
    9191                        $expected['format'],
    9292                        trim(
     
    101101        }
    102102
    103103        function test_wp_get_archives_before_and_after() {
    104                 $expected['before_and_after'] = "<div><a href='" . $this->month_url . "'>" . date( 'F Y' ) . '</a></div>';
     104                $expected['before_and_after'] = "<div><a href='" . $this->month_url . "'>" . gmdate( 'F Y' ) . '</a></div>';
    105105                $this->assertEquals(
    106106                        $expected['before_and_after'],
    107107                        trim(
     
    118118        }
    119119
    120120        function test_wp_get_archives_show_post_count() {
    121                 $expected['show_post_count'] = "<li><a href='" . $this->month_url . "'>" . date( 'F Y' ) . '</a>&nbsp;(8)</li>';
     121                $expected['show_post_count'] = "<li><a href='" . $this->month_url . "'>" . gmdate( 'F Y' ) . '</a>&nbsp;(8)</li>';
    122122                $this->assertEquals(
    123123                        $expected['show_post_count'],
    124124                        trim(
     
    133133        }
    134134
    135135        function test_wp_get_archives_echo() {
    136                 $expected['echo'] = "\t<li><a href='" . $this->month_url . "'>" . date( 'F Y' ) . '</a></li>' . "\n";
     136                $expected['echo'] = "\t<li><a href='" . $this->month_url . "'>" . gmdate( 'F Y' ) . '</a></li>' . "\n";
    137137                $this->expectOutputString( $expected['echo'] );
    138138                wp_get_archives( array( 'echo' => true ) );
    139139        }
     
    147147                        )
    148148                );
    149149
    150                 $date_full             = date( 'F Y' );
     150                $date_full             = gmdate( 'F Y' );
    151151                $oct_url               = get_month_link( 2012, 10 );
    152152                $expected['order_asc'] = <<<EOF
    153153<li><a href='{$oct_url}'>October 2012</a></li>
  • src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    925925                }
    926926
    927927                if ( in_array( 'registered_date', $fields, true ) ) {
    928                         $data['registered_date'] = date( 'c', strtotime( $user->user_registered ) );
     928                        $data['registered_date'] = gmdate( 'c', strtotime( $user->user_registered ) );
    929929                }
    930930
    931931                if ( in_array( 'capabilities', $fields, true ) ) {
  • tests/phpunit/tests/comment/query.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    29492949                $c1 = self::factory()->comment->create(
    29502950                        array(
    29512951                                'comment_post_ID'  => self::$post_id,
    2952                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 50 ),
     2952                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 50 ),
    29532953                        )
    29542954                );
    29552955                $c2 = self::factory()->comment->create(
    29562956                        array(
    29572957                                'comment_post_ID'  => self::$post_id,
    2958                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 40 ),
     2958                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 40 ),
    29592959                        )
    29602960                );
    29612961                $c3 = self::factory()->comment->create(
    29622962                        array(
    29632963                                'comment_post_ID'  => self::$post_id,
    2964                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     2964                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    29652965                        )
    29662966                );
    29672967                $c4 = self::factory()->comment->create(
    29682968                        array(
    29692969                                'comment_post_ID'  => self::$post_id,
    2970                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     2970                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    29712971                        )
    29722972                );
    29732973
     
    29952995                $c1 = self::factory()->comment->create(
    29962996                        array(
    29972997                                'comment_post_ID'  => self::$post_id,
    2998                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 50 ),
     2998                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 50 ),
    29992999                        )
    30003000                );
    30013001                $c2 = self::factory()->comment->create(
    30023002                        array(
    30033003                                'comment_post_ID'  => self::$post_id,
    3004                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 40 ),
     3004                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 40 ),
    30053005                        )
    30063006                );
    30073007                $c3 = self::factory()->comment->create(
    30083008                        array(
    30093009                                'comment_post_ID'  => self::$post_id,
    3010                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 30 ),
     3010                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 30 ),
    30113011                        )
    30123012                );
    30133013                $c4 = self::factory()->comment->create(
    30143014                        array(
    30153015                                'comment_post_ID'  => self::$post_id,
    3016                                 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 20 ),
     3016                                'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 20 ),
    30173017                        )
    30183018                );
    30193019
  • tests/phpunit/tests/xmlrpc/wp/getPosts.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    6060                        $post_ids[] = self::factory()->post->create(
    6161                                array(
    6262                                        'post_type' => $cpt_name,
    63                                         'post_date' => date( 'Y-m-d H:i:s', time() + $i ),
     63                                        'post_date' => gmdate( 'Y-m-d H:i:s', time() + $i ),
    6464                                )
    6565                        );
    6666                }
  • tests/phpunit/tests/xmlrpc/wp/editPost.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    274274                                'post_content' => 'Not edited',
    275275                                'post_author'  => $editor_id,
    276276                                'post_status'  => 'publish',
    277                                 'post_date'    => date( 'Y-m-d H:i:s', $yesterday ),
     277                                'post_date'    => gmdate( 'Y-m-d H:i:s', $yesterday ),
    278278                        )
    279279                );
    280280
  • src/wp-admin/includes/class-wp-filesystem-ftpext.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    621621                                $b['month'] = $lucifer[5];
    622622                                $b['day']   = $lucifer[6];
    623623                                if ( preg_match( '/([0-9]{2}):([0-9]{2})/', $lucifer[7], $l2 ) ) {
    624                                         $b['year']   = date( 'Y' );
     624                                        $b['year']   = gmdate( 'Y' );
    625625                                        $b['hour']   = $l2[1];
    626626                                        $b['minute'] = $l2[2];
    627627                                } else {
  • src/wp-admin/includes/post.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    170170                $hh                     = $post_data['hh'];
    171171                $mn                     = $post_data['mn'];
    172172                $ss                     = $post_data['ss'];
    173                 $aa                     = ( $aa <= 0 ) ? date( 'Y' ) : $aa;
    174                 $mm                     = ( $mm <= 0 ) ? date( 'n' ) : $mm;
     173                $aa                     = ( $aa <= 0 ) ? gmdate( 'Y' ) : $aa;
     174                $mm                     = ( $mm <= 0 ) ? gmdate( 'n' ) : $mm;
    175175                $jj                     = ( $jj > 31 ) ? 31 : $jj;
    176                 $jj                     = ( $jj <= 0 ) ? date( 'j' ) : $jj;
     176                $jj                     = ( $jj <= 0 ) ? gmdate( 'j' ) : $jj;
    177177                $hh                     = ( $hh > 23 ) ? $hh - 24 : $hh;
    178178                $mn                     = ( $mn > 59 ) ? $mn - 60 : $mn;
    179179                $ss                     = ( $ss > 59 ) ? $ss - 60 : $ss;
  • tests/phpunit/includes/testcase-rest-post-type-controller.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1010                $this->assertEquals( $post->post_name, $data['slug'] );
    1111                $this->assertEquals( get_permalink( $post->ID ), $data['link'] );
    1212                if ( '0000-00-00 00:00:00' === $post->post_date_gmt ) {
    13                         $post_date_gmt = date( 'Y-m-d H:i:s', strtotime( $post->post_date ) - ( get_option( 'gmt_offset' ) * 3600 ) );
     13                        $post_date_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_date ) - ( get_option( 'gmt_offset' ) * 3600 ) );
    1414                        $this->assertEquals( mysql_to_rfc3339( $post_date_gmt ), $data['date_gmt'] );
    1515                } else {
    1616                        $this->assertEquals( mysql_to_rfc3339( $post->post_date_gmt ), $data['date_gmt'] );
     
    1818                $this->assertEquals( mysql_to_rfc3339( $post->post_date ), $data['date'] );
    1919
    2020                if ( '0000-00-00 00:00:00' === $post->post_modified_gmt ) {
    21                         $post_modified_gmt = date( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) );
     21                        $post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $post->post_modified ) - ( get_option( 'gmt_offset' ) * 3600 ) );
    2222                        $this->assertEquals( mysql_to_rfc3339( $post_modified_gmt ), $data['modified_gmt'] );
    2323                } else {
    2424                        $this->assertEquals( mysql_to_rfc3339( $post->post_modified_gmt ), $data['modified_gmt'] );
  • tests/phpunit/tests/media.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    14281428        function test_wp_calculate_image_srcset() {
    14291429                $_wp_additional_image_sizes = wp_get_additional_image_sizes();
    14301430
    1431                 $year_month      = date( 'Y/m' );
     1431                $year_month      = gmdate( 'Y/m' );
    14321432                $image_meta      = wp_get_attachment_metadata( self::$large_id );
    14331433                $uploads_dir_url = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/';
    14341434
     
    15501550        function test_wp_calculate_image_srcset_with_absolute_path_in_meta() {
    15511551                $_wp_additional_image_sizes = wp_get_additional_image_sizes();
    15521552
    1553                 $year_month      = date( 'Y/m' );
     1553                $year_month      = gmdate( 'Y/m' );
    15541554                $image_meta      = wp_get_attachment_metadata( self::$large_id );
    15551555                $uploads_dir_url = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/';
    15561556
     
    18311831
    18321832                $srcset = wp_get_attachment_image_srcset( self::$large_id, $size_array, $image_meta );
    18331833
    1834                 $year_month  = date( 'Y/m' );
     1834                $year_month  = gmdate( 'Y/m' );
    18351835                $uploads_dir = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/';
    18361836
    18371837                // Set up test cases for all expected size names.
     
    22282228                remove_all_filters( 'wp_calculate_image_sizes' );
    22292229
    22302230                $actual = wp_get_attachment_image( self::$large_id, 'testsize' );
    2231                 $year   = date( 'Y' );
    2232                 $month  = date( 'm' );
     2231                $year   = gmdate( 'Y' );
     2232                $month  = gmdate( 'm' );
    22332233
    22342234                $expected = '<img width="999" height="999" src="http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . $year . '/' . $month . '/test-image-testsize-999x999.png"' .
    22352235                        ' class="attachment-testsize size-testsize" alt=""' .
  • src/wp-admin/includes/class-ftp.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    207207                                $b['month'] = $lucifer[5];
    208208                                $b['day'] = $lucifer[6];
    209209                                if (preg_match("/([0-9]{2}):([0-9]{2})/",$lucifer[7],$l2)) {
    210                                         $b['year'] = date("Y");
     210                                        $b['year'] = gmdate("Y");
    211211                                        $b['hour'] = $l2[1];
    212212                                        $b['minute'] = $l2[2];
    213213                                } else {
  • src/wp-admin/includes/class-wp-filesystem-direct.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    598598                        $struc['group']       = $this->group( $path . '/' . $entry );
    599599                        $struc['size']        = $this->size( $path . '/' . $entry );
    600600                        $struc['lastmodunix'] = $this->mtime( $path . '/' . $entry );
    601                         $struc['lastmod']     = date( 'M j', $struc['lastmodunix'] );
    602                         $struc['time']        = date( 'h:i:s', $struc['lastmodunix'] );
     601                        $struc['lastmod']     = gmdate( 'M j', $struc['lastmodunix'] );
     602                        $struc['time']        = gmdate( 'h:i:s', $struc['lastmodunix'] );
    603603                        $struc['type']        = $this->is_dir( $path . '/' . $entry ) ? 'd' : 'f';
    604604
    605605                        if ( 'd' == $struc['type'] ) {
  • tests/phpunit/tests/rest-api/rest-users-controller.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    27912791                        $this->assertEquals( $user->user_email, $data['email'] );
    27922792                        $this->assertEquals( (object) $user->allcaps, $data['capabilities'] );
    27932793                        $this->assertEquals( (object) $user->caps, $data['extra_capabilities'] );
    2794                         $this->assertEquals( date( 'c', strtotime( $user->user_registered ) ), $data['registered_date'] );
     2794                        $this->assertEquals( gmdate( 'c', strtotime( $user->user_registered ) ), $data['registered_date'] );
    27952795                        $this->assertEquals( $user->user_login, $data['username'] );
    27962796                        $this->assertEquals( $user->roles, $data['roles'] );
    27972797                        $this->assertEquals( get_user_locale( $user ), $data['locale'] );
  • src/wp-admin/includes/class-wp-filesystem-ssh2.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    744744                        $struc['group']       = $this->group( $path . '/' . $entry );
    745745                        $struc['size']        = $this->size( $path . '/' . $entry );
    746746                        $struc['lastmodunix'] = $this->mtime( $path . '/' . $entry );
    747                         $struc['lastmod']     = date( 'M j', $struc['lastmodunix'] );
    748                         $struc['time']        = date( 'h:i:s', $struc['lastmodunix'] );
     747                        $struc['lastmod']     = gmdate( 'M j', $struc['lastmodunix'] );
     748                        $struc['time']        = gmdate( 'h:i:s', $struc['lastmodunix'] );
    749749                        $struc['type']        = $this->is_dir( $path . '/' . $entry ) ? 'd' : 'f';
    750750
    751751                        if ( 'd' == $struc['type'] ) {
  • tests/phpunit/tests/rest-api/rest-posts-controller.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    20102010                $this->assertEquals( 'draft', $data['status'] );
    20112011                $this->assertEquals( 'draft', $new_post->post_status );
    20122012                // Confirm dates are shimmed for gmt_offset
    2013                 $post_modified_gmt = date( 'Y-m-d H:i:s', strtotime( $new_post->post_modified ) + ( get_option( 'gmt_offset' ) * 3600 ) );
    2014                 $post_date_gmt     = date( 'Y-m-d H:i:s', strtotime( $new_post->post_date ) + ( get_option( 'gmt_offset' ) * 3600 ) );
     2013                $post_modified_gmt = gmdate( 'Y-m-d H:i:s', strtotime( $new_post->post_modified ) + ( get_option( 'gmt_offset' ) * 3600 ) );
     2014                $post_date_gmt     = gmdate( 'Y-m-d H:i:s', strtotime( $new_post->post_date ) + ( get_option( 'gmt_offset' ) * 3600 ) );
    20152015
    20162016                $this->assertEquals( mysql_to_rfc3339( $post_modified_gmt ), $data['modified_gmt'] );
    20172017                $this->assertEquals( mysql_to_rfc3339( $post_date_gmt ), $data['date_gmt'] );
     
    27362736                $this->assertEquals( $new_content, $new_post->post_content );
    27372737
    27382738                // The modified date should equal the current time.
    2739                 $this->assertEquals( date( 'Y-m-d', strtotime( mysql_to_rfc3339( $expected_modified ) ) ), date( 'Y-m-d', strtotime( $data['modified'] ) ) );
    2740                 $this->assertEquals( date( 'Y-m-d', strtotime( $expected_modified ) ), date( 'Y-m-d', strtotime( $new_post->post_modified ) ) );
     2739                $this->assertEquals( gmdate( 'Y-m-d', strtotime( mysql_to_rfc3339( $expected_modified ) ) ), gmdate( 'Y-m-d', strtotime( $data['modified'] ) ) );
     2740                $this->assertEquals( gmdate( 'Y-m-d', strtotime( $expected_modified ) ), gmdate( 'Y-m-d', strtotime( $new_post->post_modified ) ) );
    27412741        }
    27422742
    27432743        /**
  • src/wp-includes/rest-api.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    924924        // Timezone conversion needs to be handled differently between these two
    925925        // cases.
    926926        if ( ! $is_utc && ! $has_timezone ) {
    927                 $local = date( 'Y-m-d H:i:s', $date );
     927                $local = gmdate( 'Y-m-d H:i:s', $date );
    928928                $utc   = get_gmt_from_date( $local );
    929929        } else {
    930                 $utc   = date( 'Y-m-d H:i:s', $date );
     930                $utc   = gmdate( 'Y-m-d H:i:s', $date );
    931931                $local = get_date_from_gmt( $utc );
    932932        }
    933933