diff options
-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; |