Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-10-27 19:45:09 +0400
committerBart Visscher <bartv@thisnet.nl>2012-10-27 19:45:15 +0400
commitfecfeac55d762ec80c9305b55e7140588bfe5dd5 (patch)
tree19ff96d8a70542360060effb4dd088e33c5151ab /lib/route.php
parentd6953fa5ed796699d82b82473317b700dfbcfa72 (diff)
Fix introduced style errors
Diffstat (limited to 'lib/route.php')
-rw-r--r--lib/route.php6
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);
}
}