diff options
Diffstat (limited to 'Net')
-rw-r--r-- | Net/OpenID/CryptUtil.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Net/OpenID/CryptUtil.php b/Net/OpenID/CryptUtil.php index e7b8e04..6d2a193 100644 --- a/Net/OpenID/CryptUtil.php +++ b/Net/OpenID/CryptUtil.php @@ -51,7 +51,7 @@ class Net_OpenID_CryptUtil { { $bytes = ''; $f = @fopen("/dev/urandom", "r"); - if ($f === FALSE) { + if ($f === false) { if (!defined('Net_OpenID_USE_INSECURE_RAND')) { trigger_error('Set Net_OpenID_USE_INSECURE_RAND to ' . 'continue with insecure random.', @@ -672,7 +672,7 @@ class Net_OpenID_MathLibrary { // $Net_OpenID_supported_extensions and try to find an // extension that works. if (!$Net_OpenID___mathLibrary) { - $loaded = FALSE; + $loaded = false; foreach ($Net_OpenID_supported_extensions as $extension) { // See if the extension specified is already loaded. |