From d552ed4f065dea73067b90fed22c9015a66f9533 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 28 Jul 2016 10:00:19 +0200 Subject: [PATCH] define Vfs::LINK_MODE constant again, since we no longer inherit from Vfs\StreamWrapper --- api/src/Vfs.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/src/Vfs.php b/api/src/Vfs.php index 50f3a64f46..2230b0f077 100644 --- a/api/src/Vfs.php +++ b/api/src/Vfs.php @@ -90,6 +90,10 @@ class Vfs * Excecutable bit, here only use to check if user is allowed to search dirs */ const EXECUTABLE = 1; + /** + * mode-bits, which have to be set for links + */ + const MODE_LINK = Vfs\StreamWrapper::MODE_LINK; /** * Name of the lock table */