diff options
author | Robin Appelman <robin@icewind.nl> | 2015-09-01 17:20:21 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2015-09-01 17:20:21 +0200 |
commit | 9858a6f7059dbf327365a2b259a57de81b6a3e8a (patch) | |
tree | badb97638a593076474c76ad9bfd4584c8a49987 /lib | |
parent | 39bd4ea8f202cb71f94d885901ba40872dfa5176 (diff) | |
parent | 01dcf7f32c4aa9353c2a3f93ebd7c8ca415562c6 (diff) | |
download | nextcloud-server-9858a6f7059dbf327365a2b259a57de81b6a3e8a.tar.gz nextcloud-server-9858a6f7059dbf327365a2b259a57de81b6a3e8a.zip |
Merge pull request #18743 from owncloud/autoloader-check-log-path
Show the path as part of the exception for not allowed autoloading paths
Diffstat (limited to 'lib')
-rw-r--r-- | lib/autoloader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php index 010318a65be..d7649781ea1 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -129,7 +129,7 @@ class Autoloader { return true; } } - throw new \Exception('Path not allowed'); + throw new \Exception('Path not allowed: '. $fullPath); } /** |