From 012341c0238536a4f0bb774b124e82b5eaf666b5 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Sat, 31 Oct 2009 22:07:45 -0400 Subject: [PATCH] Change how VFS::read() is called to match the function definition Bug: #8670 --- ingo/lib/Driver/Vfs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); } /** -- 2.11.0