From 01dcf7f32c4aa9353c2a3f93ebd7c8ca415562c6 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Tue, 1 Sep 2015 15:43:23 +0200
Subject: [PATCH] Show the path as part of the exception for not allowed
 autoloading paths

---
 lib/autoloader.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 	}
 
 	/**
-- 
GitLab