Make WordPress Core

Ticket #61908: patch.php

File patch.php, 145 bytes (added by dpeterson1971, 11 months ago)
Line 
1<?php
2
3if ( null === $timestamp ) {
4        $timestamp = time();
5} elseif ( ! is_numeric( $timestamp ) && ! is_float( $timestamp ) ) {
6        return false;
7}