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

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-08-06 18:59:25 +0300
committerRobin Appelman <robin@icewind.nl>2018-08-06 18:59:25 +0300
commit7edb64e78beff91f9d1f8c6c1bf694b5ba21030a (patch)
tree18838c9db0ffd7ab31b78575db65ce01bb72f1c7 /appinfo/app.php
parentb8ec476886210a797a8601e9a719708bb8733242 (diff)
appchecker compliance for app.php and info.xml
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'appinfo/app.php')
-rw-r--r--appinfo/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 54a5711d..9e741911 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -9,10 +9,10 @@ $eventDispatcher = \OC::$server->getEventDispatcher();
$eventDispatcher->addListener(
'OCA\Files::loadAdditionalScripts',
function () {
- \OC_Util::addScript('groupfolders', 'files');
+ \OCP\Util::addScript('groupfolders', 'files');
}
);
$eventDispatcher->addListener('OCA\Files_Sharing::loadAdditionalScripts', function () {
- \OC_Util::addScript('groupfolders', 'files');
+ \OCP\Util::addScript('groupfolders', 'files');
});