Make WordPress Core

Changeset 13429


Ignore:
Timestamp:
02/26/2010 07:25:10 AM (17 years ago)
Author:
nacin
Message:

Suppress potential is_readable() warning. Fixes #12148 props ocean90

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-phpass.php

    r12521 r13429  
    5656        {
    5757                $output = '';
    58                 if (is_readable('/dev/urandom') &&
     58                if ( @is_readable('/dev/urandom') &&
    5959                    ($fh = @fopen('/dev/urandom', 'rb'))) {
    6060                        $output = fread($fh, $count);
Note: See TracChangeset for help on using the changeset viewer.