1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-01 01:52:18 +01:00

Refactor.

- gmdate(, $x) already defaults to time()
This commit is contained in:
Jean Paul Galea 2015-07-17 00:43:11 +02:00
parent b1df4deaf1
commit 069660e4ef

View File

@ -242,7 +242,7 @@ function sendResp($status, $logger, $apiKey = '', $extra = null) {
// 2008-11-21T06:11:55Z0711
$t = substr(microtime(false), 2, 3);
$t = gmdate('Y-m-d\TH:i:s\Z0', time()) . $t;
$t = gmdate('Y-m-d\TH:i:s\Z0') . $t;
$a['t'] = $t;