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:
Diffstat (limited to 'apps/tasks/appinfo/app.php')
-rw-r--r--apps/tasks/appinfo/app.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tasks/appinfo/app.php b/apps/tasks/appinfo/app.php
index 657c56c0401..f346e2aa4c0 100644
--- a/apps/tasks/appinfo/app.php
+++ b/apps/tasks/appinfo/app.php
@@ -3,14 +3,14 @@ $l=new OC_L10N('tasks');
OC::$CLASSPATH['OC_Calendar_Calendar'] = 'apps/calendar/lib/calendar.php';
OC::$CLASSPATH['OC_Task_App'] = 'apps/tasks/lib/app.php';
-OC_App::register( array(
+OCP\App::register( array(
'order' => 11,
'id' => 'tasks',
'name' => 'Tasks' ));
-OC_App::addNavigationEntry( array(
+OCP\App::addNavigationEntry( array(
'id' => 'tasks_index',
'order' => 11,
- 'href' => OC_Helper::linkTo( 'tasks', 'index.php' ),
- 'icon' => OC_Helper::imagePath( 'tasks', 'icon.png' ),
+ 'href' => OCP\Util::linkTo( 'tasks', 'index.php' ),
+ 'icon' => OCP\Util::imagePath( 'tasks', 'icon.png' ),
'name' => $l->t('Tasks')));