aboutsummaryrefslogtreecommitdiffstats
path: root/lib/route.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/route.php')
-rw-r--r--lib/route.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/route.php b/lib/route.php
index d5233d79861..5901717c094 100644
--- a/lib/route.php
+++ b/lib/route.php
@@ -108,7 +108,7 @@ class OC_Route extends Route {
public function actionInclude($file) {
$function = create_function('$param',
'unset($param["_route"]);'
- .'$_GET=array_merge($_GET,$param);'
+ .'$_GET=array_merge($_GET, $param);'
.'unset($param);'
.'require_once "'.$file.'";');
$this->action($function);