Make WordPress Core

Ticket #34228: 34228.patch

File 34228.patch, 345 bytes (added by jim912, 9 years ago)
  • wp-includes/date.php

    old new class WP_Date_Query { 
    992992                $format = $time = '';
    993993
    994994                // Hour
    995                 if ( $hour ) {
     995                if ( isset( $hour ) {
    996996                        $format .= '%H.';
    997997                        $time   .= sprintf( '%02d', $hour ) . '.';
    998998                } else {