diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 19:55:03 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 19:55:03 +0200 |
commit | 6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312 (patch) | |
tree | c6827eab89d7c197c8a408ce8368367560b81411 /core/routes.php | |
parent | f19a236c8e8c06f2a30212970714d66b68218e15 (diff) | |
download | nextcloud-server-6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312.tar.gz nextcloud-server-6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312.zip |
Fix typo
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 2 |
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')); |