Merge pull request #110 from ausi/patch-1

Fix TCPDF_STATIC::fileGetContents()
This commit is contained in:
Nicola Asuni 2019-01-16 11:39:19 +00:00 committed by GitHub
commit e9cd9eab11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1926,7 +1926,7 @@ class TCPDF_STATIC {
$alt = array_unique($alt);
foreach ($alt as $path) {
if (!self::file_exists($path)) {
return false;
continue;
}
$ret = @file_get_contents($path);
if ($ret !== false) {