mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
possible fix for deactivated / or /apps
This commit is contained in:
parent
ef5b160fdd
commit
4cd0d35ff7
@ -146,7 +146,7 @@ class StreamWrapper extends LinksParent
|
||||
(list($app) = array_slice(explode('/',$url),-3,1)) && $app === 'addressbook')
|
||||
{
|
||||
$ret = array(
|
||||
'ino' => md5($url),
|
||||
'ino' => '#'.md5($url),
|
||||
'name' => '.entry',
|
||||
'mode' => self::MODE_FILE|Vfs::READABLE, // required by the stream wrapper
|
||||
'size' => 1024, // fmail does NOT attach files with size 0!
|
||||
@ -166,7 +166,7 @@ class StreamWrapper extends LinksParent
|
||||
if ($id && !isset($rel_path))
|
||||
{
|
||||
$ret = array(
|
||||
'ino' => md5($url),
|
||||
'ino' => '#'.md5($url),
|
||||
'name' => $id,
|
||||
'mode' => self::MODE_DIR, // required by the stream wrapper
|
||||
'size' => 0,
|
||||
|
@ -385,7 +385,7 @@ class StreamWrapper extends Api\Db\Pdo implements Vfs\StreamWrapperIface
|
||||
$ret = fclose($this->opened_stream) && $ret;
|
||||
|
||||
unset(self::$stat_cache[$this->opened_path]);
|
||||
$this->opened_stream = $this->opened_path = $this->opened_mode = $this->opend_fs_id = null;
|
||||
$this->opened_stream = $this->opened_path = $this->opened_mode = $this->opened_fs_id = null;
|
||||
$this->operation = self::DEFAULT_OPERATION;
|
||||
|
||||
return $ret;
|
||||
|
Loading…
Reference in New Issue
Block a user