diff options
author | Julius Haertl <jus@bitgrid.net> | 2016-11-04 18:55:00 +0100 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2016-11-18 10:23:25 +0100 |
commit | 78de213b8582f160b9e3acd1d921a6dd1ccd88d9 (patch) | |
tree | ef7374ebd57633a9e6f7af8f8880d0134bbae890 /apps/theming/appinfo | |
parent | 3a400f92d1936b2b752d813cbb27632d6acb9904 (diff) | |
download | nextcloud-server-78de213b8582f160b9e3acd1d921a6dd1ccd88d9.tar.gz nextcloud-server-78de213b8582f160b9e3acd1d921a6dd1ccd88d9.zip |
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.php | 4 |
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', |