diff -r 7906fb190fc1 -r bc4b58034f4d includes/rijndael.php --- a/includes/rijndael.php Sat Mar 01 23:02:05 2008 -0500 +++ b/includes/rijndael.php Sun Mar 02 19:32:19 2008 -0500 @@ -909,7 +909,7 @@ { $key .= chr(mt_rand(0, 255)); } - if ( file_exists('/dev/urandom') && is_readable('/dev/urandom') ) + if ( @file_exists('/dev/urandom') && @is_readable('/dev/urandom') ) { // Let's use something a little more secure $ur = @fopen('/dev/urandom', 'r');