diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-21 17:53:44 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-25 17:12:27 +0200 |
commit | 95f06d071decae789d0ce1beccabf59ad03d3eb6 (patch) | |
tree | aaeb95e74d07ec4dbf8d96fc7779dff457aab761 /apps/accessibility/appinfo | |
parent | 627df8f247838bd783d8ca1b21fbcec54b708a94 (diff) | |
download | nextcloud-server-95f06d071decae789d0ce1beccabf59ad03d3eb6.tar.gz nextcloud-server-95f06d071decae789d0ce1beccabf59ad03d3eb6.zip |
Fix css url
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/accessibility/appinfo')
-rw-r--r-- | apps/accessibility/appinfo/app.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/accessibility/appinfo/app.php b/apps/accessibility/appinfo/app.php index 39e7b71a089..7f8e3c3262b 100644 --- a/apps/accessibility/appinfo/app.php +++ b/apps/accessibility/appinfo/app.php @@ -1,4 +1,5 @@ <?php +declare (strict_types = 1); /** * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> * @@ -22,3 +23,8 @@ */ $app = new \OCA\Accessibility\AppInfo\Application(); + +// Separate from the constructor since the route are not initialized before that +// 1. create the app +// 2. generate css route and inject +$app->injectCss();
\ No newline at end of file |