Skip to content
Snippets Groups Projects
Commit 210ea4d9 authored by Bart Visscher's avatar Bart Visscher
Browse files

fix actioninclude

parent d0bd2bbf
Branches
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ class OC_Route extends Route {
}
public function actionInclude($file) {
$function = create_function('$param', 'unset($param["_route"]);$_GET=$param;unset($param);require_once "'.$file.'";');
$function = create_function('$param', 'unset($param["_route"]);$_GET=array_merge($_GET,$param);unset($param);require_once "'.$file.'";');
$this->action($function);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment