summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2013-10-04 19:55:03 +0200
committerThomas Tanghus <thomas@tanghus.net>2013-10-04 19:55:03 +0200
commit6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312 (patch)
treec6827eab89d7c197c8a408ce8368367560b81411 /core/routes.php
parentf19a236c8e8c06f2a30212970714d66b68218e15 (diff)
downloadnextcloud-server-6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312.tar.gz
nextcloud-server-6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312.zip
Fix typo
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/routes.php b/core/routes.php
index 4163bdcd5bc..5009243d59f 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -40,7 +40,7 @@ $this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/')
->post()
->action('OC\Core\Tags\Controller', 'favorite')
->requirements(array('type', 'id'));
-$this->create('core_tags_unfavorite', '/tags/{type}/infavorite/{id}/')
+$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/')
->post()
->action('OC\Core\Tags\Controller', 'unFavorite')
->requirements(array('type', 'id'));