Merge pull request #18743 from owncloud/autoloader-check-log-path

Show the path as part of the exception for not allowed autoloading paths
This commit is contained in:
Robin Appelman 2015-09-01 17:20:21 +02:00
commit 9858a6f705
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class Autoloader {
return true;
}
}
throw new \Exception('Path not allowed');
throw new \Exception('Path not allowed: '. $fullPath);
}
/**