From 57215ec67c1ee6894c0393f6c0fffa5b5caeafc8 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 27 Jun 2011 20:00:05 +0000 Subject: [PATCH] fixed not working debug message --- phpgwapi/inc/class.links_stream_wrapper.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.links_stream_wrapper.inc.php b/phpgwapi/inc/class.links_stream_wrapper.inc.php index 3e54991fed..8e8f5f4e29 100644 --- a/phpgwapi/inc/class.links_stream_wrapper.inc.php +++ b/phpgwapi/inc/class.links_stream_wrapper.inc.php @@ -101,7 +101,7 @@ class links_stream_wrapper extends links_stream_wrapper_parent $required = $check & egw_vfs::WRITABLE ? EGW_ACL_EDIT : EGW_ACL_READ; $access = egw_link::file_access($app,$id,$required,$rel_path,egw_vfs::$user); } - if (self::DEBUG) error_log(__METHOD__."($url,$check) user={egw_vfs::$user} ".($access?"access granted ($app:$id:$rel_path)":'no access!!!')); + if (self::DEBUG) error_log(__METHOD__."($url,$check) user=".egw_vfs::$user.' '.($access?"access granted ($app:$id:$rel_path)":'no access!!!')); return $access; }