Completed
Pull Request — master (#7137)
by Robin
15:37
created
lib/private/Files/Storage/Wrapper/Jail.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,12 +56,12 @@
 block discarded – undo
56 56
 		if ($path === '') {
57 57
 			return $this->rootPath;
58 58
 		} else {
59
-			return $this->rootPath . '/' . $path;
59
+			return $this->rootPath.'/'.$path;
60 60
 		}
61 61
 	}
62 62
 
63 63
 	public function getJailedPath($path) {
64
-		$root = rtrim($this->rootPath, '/') . '/';
64
+		$root = rtrim($this->rootPath, '/').'/';
65 65
 
66 66
 		if (strpos($path, $root) !== 0) {
67 67
 			return null;
Please login to merge, or discard this patch.