diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-12 22:58:37 -0800 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-12 22:58:37 -0800 |
commit | 06bba59249188e58036627a75268d9db69346f9b (patch) | |
tree | 41e0d144d47e20aaa2e4b79b2664638b09b7e0d3 /lib/files/storage/local.php | |
parent | 68fa0b7dcc4a45e4f44b754626440091608ccc85 (diff) | |
parent | 92e6409f4008d21c8507310d7b6ce0f64fc29b71 (diff) | |
download | nextcloud-server-06bba59249188e58036627a75268d9db69346f9b.tar.gz nextcloud-server-06bba59249188e58036627a75268d9db69346f9b.zip |
Merge pull request #1618 from owncloud/mapped-storage-unit-testing-linux-masterv5.0.0alpha1
Mapped storage unit testing linux master
Diffstat (limited to 'lib/files/storage/local.php')
-rw-r--r-- | lib/files/storage/local.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index 9fe01135866..aaa3c0fab49 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -9,7 +9,9 @@ namespace OC\Files\Storage; if (\OC_Util::runningOnWindows()) { - require_once 'mappedlocal.php'; + class Local extends MappedLocal { + + } } else { /** |