diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-06 23:00:36 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-06 23:00:36 +0200 |
commit | 1945cd694636def02a2b2d4fb36720b3f0aeeb10 (patch) | |
tree | ee041bce0aaa57f99a6680c2138c8fef00129869 /apps/tasks/index.php | |
parent | 5d55c709dddad44984446efa49ceb7084fc16b3f (diff) | |
download | nextcloud-server-1945cd694636def02a2b2d4fb36720b3f0aeeb10.tar.gz nextcloud-server-1945cd694636def02a2b2d4fb36720b3f0aeeb10.zip |
ported the oc_template class
Diffstat (limited to 'apps/tasks/index.php')
-rwxr-xr-x[-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 8ed5f410434..5e17ca454ec 100644..100755 --- a/apps/tasks/index.php +++ b/apps/tasks/index.php @@ -28,7 +28,7 @@ OCP\App::setActiveNavigationEntry('tasks_index'); $categories = OC_Calendar_App::getCategoryOptions(); $l10n = new OC_L10N('tasks'); $priority_options = OC_Task_App::getPriorityOptions(); -$output = new OC_Template('tasks', 'tasks', 'user'); +$output = new OCP\Template('tasks', 'tasks', 'user'); $output->assign('priority_options', $priority_options); $output->assign('categories', $categories); $output -> printPage(); |