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:
authorJulius Haertl <jus@bitgrid.net>2016-11-04 20:55:00 +0300
committerJulius Haertl <jus@bitgrid.net>2016-11-18 12:23:25 +0300
commit78de213b8582f160b9e3acd1d921a6dd1ccd88d9 (patch)
treeef7374ebd57633a9e6f7af8f8880d0134bbae890 /apps/theming/appinfo
parent3a400f92d1936b2b752d813cbb27632d6acb9904 (diff)
Sanitize input and small fixes
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/appinfo')
-rw-r--r--apps/theming/appinfo/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/appinfo/routes.php b/apps/theming/appinfo/routes.php
index a8436ab254f..f4aa2f93162 100644
--- a/apps/theming/appinfo/routes.php
+++ b/apps/theming/appinfo/routes.php
@@ -64,13 +64,13 @@ return ['routes' => [
'name' => 'Icon#getFavicon',
'url' => '/favicon/{app}',
'verb' => 'GET',
- 'defaults' => array("app" => "core"),
+ 'defaults' => array('app' => 'core'),
],
[
'name' => 'Icon#getTouchIcon',
'url' => '/icon/{app}',
'verb' => 'GET',
- 'defaults' => array("app" => "core"),
+ 'defaults' => array('app' => 'core'),
],
[
'name' => 'Icon#getThemedIcon',