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:
-rw-r--r--apps/workflowengine/lib/AppInfo/Application.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/workflowengine/lib/AppInfo/Application.php b/apps/workflowengine/lib/AppInfo/Application.php
index b5e769d01d7..e968b40612f 100644
--- a/apps/workflowengine/lib/AppInfo/Application.php
+++ b/apps/workflowengine/lib/AppInfo/Application.php
@@ -21,9 +21,6 @@
namespace OCA\WorkflowEngine\AppInfo;
-use OCP\Util;
-use OCP\WorkflowEngine\RegisterCheckEvent;
-
class Application extends \OCP\AppFramework\App {
public function __construct() {
@@ -41,6 +38,11 @@ class Application extends \OCP\AppFramework\App {
$dispatcher->addListener(
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
function() {
+ if (!function_exists('style')) {
+ // This is hacky, but we need to load the template class
+ class_exists('OCP\Template', true);
+ }
+
style('workflowengine', [
'admin',
]);