From: Chuck Hagenbuch Date: Sun, 1 Nov 2009 02:07:45 +0000 (-0400) Subject: Change how VFS::read() is called to match the function definition X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=012341c0238536a4f0bb774b124e82b5eaf666b5;p=horde.git Change how VFS::read() is called to match the function definition Bug: #8670 --- diff --git a/ingo/lib/Driver/Vfs.php b/ingo/lib/Driver/Vfs.php index 5e33423f3..9c0973d18 100644 --- a/ingo/lib/Driver/Vfs.php +++ b/ingo/lib/Driver/Vfs.php @@ -99,7 +99,7 @@ class Ingo_Driver_Vfs extends Ingo_Driver if (is_a($result, 'PEAR_Error')) { return $result; } - return $this->_vfs->read('', $this->_params['vfs_path'] . '/' . $this->_params['filename']); + return $this->_vfs->read($this->_params['vfs_path'], $this->_params['filename']); } /**