From 2610b365c8f1becfea46b23a667d56e23404a63e Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 22 May 2010 11:01:29 +0000 Subject: [PATCH] fixed PHP Fatal error: Declaration of vfs_stream_wrapper::url_stat() must be compatible with that of iface_stream_wrapper::url_stat() --- phpgwapi/inc/class.vfs_stream_wrapper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.vfs_stream_wrapper.inc.php b/phpgwapi/inc/class.vfs_stream_wrapper.inc.php index 6b702037d5..f775c1f2b3 100644 --- a/phpgwapi/inc/class.vfs_stream_wrapper.inc.php +++ b/phpgwapi/inc/class.vfs_stream_wrapper.inc.php @@ -720,7 +720,7 @@ class vfs_stream_wrapper implements iface_stream_wrapper * @param boolean $check_symlink_components=true check if path contains symlinks in path components other then the last one * @return array */ - static function url_stat ( $path, $flags=0, $try_create_home=false, $check_symlink_components=true ) + static function url_stat ( $path, $flags, $try_create_home=false, $check_symlink_components=true ) { if (self::LOG_LEVEL > 1) error_log(__METHOD__."('$path',$flags,try_create_home=$try_create_home,check_symlink_components=$check_symlink_components)");