forked from extern/egroupware
Make sure we use the lowest file_id, even if that comes from a disabled file, so we're consistent with versioned files
This commit is contained in:
parent
e420a6db10
commit
4c0ef2020f
@ -1585,7 +1585,7 @@ class StreamWrapper extends Api\Db\Pdo implements Vfs\StreamWrapperIface
|
||||
$query = 'SELECT MIN(B.fs_id)
|
||||
FROM ' . self::TABLE . ' as A
|
||||
JOIN ' . self::TABLE . ' AS B ON A.fs_name = B.fs_name AND A.fs_dir = B.fs_dir AND A.fs_active = ' .
|
||||
self::_pdo_boolean(true) . ' AND B.fs_active = ' . self::_pdo_boolean(true) . '
|
||||
self::_pdo_boolean(true) . ' AND B.fs_active = ' . self::_pdo_boolean(false) . '
|
||||
WHERE A.fs_id=?
|
||||
GROUP BY A.fs_id';
|
||||
if (self::LOG_LEVEL > 2)
|
||||
|
Loading…
Reference in New Issue
Block a user