Aleksander Machniak
2013-05-22 656005f056030b278aa96047f405bb802644a516
Catch warning on is_readable() failure (open_basedir restriction)
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_mime.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_mime.php
@@ -795,7 +795,7 @@
        }
        foreach ($file_paths as $fp) {
            if (is_readable($fp)) {
            if (@is_readable($fp)) {
                $lines = file($fp, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
                break;
            }