From 81b78a8e65fcd4dbc08f7753f6fbb30c5643ae3b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 17 Jun 2011 13:08:10 +0000 Subject: [PATCH] fixed not working standard document with absolute path --- etemplate/inc/class.bo_merge.inc.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etemplate/inc/class.bo_merge.inc.php b/etemplate/inc/class.bo_merge.inc.php index ad20e43a02..a276a43d6e 100644 --- a/etemplate/inc/class.bo_merge.inc.php +++ b/etemplate/inc/class.bo_merge.inc.php @@ -1035,6 +1035,11 @@ abstract class bo_merge } } } + elseif (egw_vfs::stat($document) && egw_vfs::is_readable($document)) + { + return false; + } + //error_log(__METHOD__."('$document', dirs='$dirs') returning 'Document '$document' does not exist or is not readable for you!'"); return lang("Document '%1' does not exist or is not readable for you!",$document); }