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

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-09-08 15:22:18 +0300
committerOlivier Paroz <github@oparoz.com>2015-09-17 23:53:36 +0300
commitec6a904c8df91a614c435d48568970edc1c3c2a8 (patch)
treeea47ee52f829ccc16d45547d53e3ab6248941da4 /appinfo
parent4ea24d9e510d60fd483bd6643d7f0b1ade52e704 (diff)
Don't send the error messages via GET/POST
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/application.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/appinfo/application.php b/appinfo/application.php
index 436204d9..1cbe2719 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -78,7 +78,8 @@ class Application extends App {
$c->query('Request'),
$c->query('Environment'),
$c->query('OCP\IURLGenerator'),
- $c->query('OCP\IConfig')
+ $c->query('OCP\IConfig'),
+ $c->query('Session')
);
}
);
@@ -125,6 +126,7 @@ class Application extends App {
$c->query('ConfigService'),
$c->query('SearchMediaService'),
$c->query('DownloadService'),
+ $c->query('Session'),
$c->query('Logger')
);
}
@@ -139,6 +141,7 @@ class Application extends App {
$c->query('ConfigService'),
$c->query('SearchMediaService'),
$c->query('DownloadService'),
+ $c->query('Session'),
$c->query('Logger')
);
}
@@ -153,6 +156,7 @@ class Application extends App {
$c->query('ConfigService'),
$c->query('SearchMediaService'),
$c->query('DownloadService'),
+ $c->query('Session'),
$c->query('Logger')
);
}
@@ -374,6 +378,7 @@ class Application extends App {
$c->query('OCP\IConfig'),
$c->query('OCP\AppFramework\Utility\IControllerMethodReflector'),
$c->query('OCP\IURLGenerator'),
+ $c->query('Session'),
$c->query('Logger')
);
}