diff options
author | Josh Hoyt <josh@janrain.com> | 2006-09-27 00:03:12 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-09-27 00:03:12 +0000 |
commit | 06a318aac02fc0285a596d366585629d7a466529 (patch) | |
tree | 4a2689feda7dd573857c3b4dc7f31909ed5de86b | |
parent | 4ad6be32999533ad2f0bfe8c82bab6b88bc03e47 (diff) | |
download | php-openid-06a318aac02fc0285a596d366585629d7a466529.zip php-openid-06a318aac02fc0285a596d366585629d7a466529.tar.gz php-openid-06a318aac02fc0285a596d366585629d7a466529.tar.bz2 |
[project @ Silence warning about gmmktime in Nonce code]
-rw-r--r-- | Auth/OpenID/Nonce.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Nonce.php b/Auth/OpenID/Nonce.php index 7242d12..d634f9b 100644 --- a/Auth/OpenID/Nonce.php +++ b/Auth/OpenID/Nonce.php @@ -41,7 +41,7 @@ function Auth_OpenID_splitNonce($nonce_string) $uniquifier) = $matches; $timestamp = - gmmktime($tm_hour, $tm_min, $tm_sec, $tm_mon, $tm_mday, $tm_year); + @gmmktime($tm_hour, $tm_min, $tm_sec, $tm_mon, $tm_mday, $tm_year); if ($timestamp === false || $timestamp < 0) { return null; |