fixed typo preventing non-root access

This commit is contained in:
Ralf Becker 2008-02-29 07:23:14 +00:00
parent ce1afa2ce8
commit ea5cda5310

View File

@ -898,7 +898,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
// if we are not root, we need to make sure the user has the right to tranverse all partent directories (read-rights)
if (!egw_vfs::$is_root)
{
$query .= ' AND '.$sql_read_acl;
$query .= ' AND '.self::_sql_readable();
}
}
else