From: Thomas Tanghus Date: Fri, 4 Oct 2013 17:55:03 +0000 (+0200) Subject: Fix typo X-Git-Tag: v6.0.0alpha2~35^2^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312;p=nextcloud-server.git Fix typo --- 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'));