diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-09-01 15:43:23 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-09-01 16:06:52 +0200 |
commit | 01dcf7f32c4aa9353c2a3f93ebd7c8ca415562c6 (patch) | |
tree | e773f97e3339d434ed70ae46a53627458d430ba6 /lib/autoloader.php | |
parent | 01152676cddc89d2f3796c0380e94b4ce2879bb6 (diff) | |
download | nextcloud-server-01dcf7f32c4aa9353c2a3f93ebd7c8ca415562c6.tar.gz nextcloud-server-01dcf7f32c4aa9353c2a3f93ebd7c8ca415562c6.zip |
Show the path as part of the exception for not allowed autoloading paths
Diffstat (limited to 'lib/autoloader.php')
-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); } /** |