diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-05-04 20:20:37 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-05-04 20:20:37 +0200 |
commit | 19d2b94837f19539c994157150f3f231f840d3f1 (patch) | |
tree | 56c66a44417e86e79d25dc62196fcc6fb33f00a9 /apps/tasks/index.php | |
parent | eae21f32699ed01dd632d28c4ca7ff497c713a1f (diff) | |
download | nextcloud-server-19d2b94837f19539c994157150f3f231f840d3f1.tar.gz nextcloud-server-19d2b94837f19539c994157150f3f231f840d3f1.zip |
Tasks: More updates to public API
Diffstat (limited to 'apps/tasks/index.php')
-rw-r--r-- | apps/tasks/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tasks/index.php b/apps/tasks/index.php index 160fb5a2697..8ed5f410434 100644 --- a/apps/tasks/index.php +++ b/apps/tasks/index.php @@ -13,7 +13,7 @@ OCP\App::checkAppEnabled('tasks'); $calendars = OC_Calendar_Calendar::allCalendars(OCP\User::getUser(), true); if( count($calendars) == 0 ) { - header('Location: ' . OC_Helper::linkTo('calendar', 'index.php')); + header('Location: ' . OCP\Util::linkTo('calendar', 'index.php')); exit; } |