diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-10-27 17:45:09 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-10-27 17:45:15 +0200 |
commit | fecfeac55d762ec80c9305b55e7140588bfe5dd5 (patch) | |
tree | 19ff96d8a70542360060effb4dd088e33c5151ab /lib/route.php | |
parent | d6953fa5ed796699d82b82473317b700dfbcfa72 (diff) | |
download | nextcloud-server-fecfeac55d762ec80c9305b55e7140588bfe5dd5.tar.gz nextcloud-server-fecfeac55d762ec80c9305b55e7140588bfe5dd5.zip |
Fix introduced style errors
Diffstat (limited to 'lib/route.php')
-rw-r--r-- | lib/route.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/route.php b/lib/route.php index 89af829d3d3..d5233d79861 100644 --- a/lib/route.php +++ b/lib/route.php @@ -106,7 +106,11 @@ class OC_Route extends Route { * @param $file */ public function actionInclude($file) { - $function = create_function('$param', 'unset($param["_route"]);$_GET=array_merge($_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); } } |