From 9e0ff222f2cca85344d1bec7f1905eb156c7b061 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 15 Aug 2016 18:55:29 +0200 Subject: [PATCH] missed passing $append parameter to include_modules --- api/src/Framework/IncludeMgr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Framework/IncludeMgr.php b/api/src/Framework/IncludeMgr.php index d70a0dd399..743aec1c95 100644 --- a/api/src/Framework/IncludeMgr.php +++ b/api/src/Framework/IncludeMgr.php @@ -377,7 +377,7 @@ class IncludeMgr $module = array(); $this->parse_deps($path, $module); - $this->include_module($module); + $this->include_module($module, $append); } }