From 18642b02eac687d4f2e597654d06a69e8abc9875 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 3 Oct 2016 12:21:25 +0200 Subject: [PATCH] need to pass $ignore_acl of write to internal write call to update parent too --- infolog/inc/class.infolog_bo.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infolog/inc/class.infolog_bo.inc.php b/infolog/inc/class.infolog_bo.inc.php index 2e8df94d2e..f9d546e017 100644 --- a/infolog/inc/class.infolog_bo.inc.php +++ b/infolog/inc/class.infolog_bo.inc.php @@ -1002,10 +1002,10 @@ class infolog_bo $values_in = array_merge($values_in,$values); // Update modified timestamp of parent - if($values['info_id_parent']) + if($values['info_id_parent'] && $touch_modified) { $parent = $this->read($values['info_id_parent'], false, 'server', true); - $this->write($parent,false, true, false, true); + $this->write($parent, false, true, false, true, false, null, $ignore_acl); } } return $info_id;