diff --git a/phpgwapi/inc/class.egw_include_mgr.inc.php b/phpgwapi/inc/class.egw_include_mgr.inc.php index 520f2e59e8..477e7b5f5b 100644 --- a/phpgwapi/inc/class.egw_include_mgr.inc.php +++ b/phpgwapi/inc/class.egw_include_mgr.inc.php @@ -136,7 +136,11 @@ class egw_include_mgr // an absolute path (initialized by "/"). if ($mod[0] != '/') { - $mod = explode(".", $mod); + $mod = explode(".", $mod, 3); + } + else + { + $mod = array($mod); } $empty = false;