summaryrefslogtreecommitdiffstats
path: root/Net
diff options
context:
space:
mode:
authorJosh Hoyt <josh@janrain.com>2006-01-06 00:06:47 +0000
committerJosh Hoyt <josh@janrain.com>2006-01-06 00:06:47 +0000
commit0b10edb3704cee398f1aa3c992ba773dfcc062b5 (patch)
tree97fd8b76133304036706b20e46deec6c5ec11e66 /Net
parentc58dcc1f35158704bb9a7c87eee378e7ff2ec262 (diff)
downloadphp-openid-0b10edb3704cee398f1aa3c992ba773dfcc062b5.zip
php-openid-0b10edb3704cee398f1aa3c992ba773dfcc062b5.tar.gz
php-openid-0b10edb3704cee398f1aa3c992ba773dfcc062b5.tar.bz2
[project @ Fix case of FALSE]
Diffstat (limited to 'Net')
-rw-r--r--Net/OpenID/CryptUtil.php4
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.