diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 20:03:31 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 20:03:31 +0200 |
commit | 9c230f8c85cf80efb10093e66e1197c200c185c1 (patch) | |
tree | c13dbbbc17717ae6d995abdca8d2eb423c9be3fc | |
parent | 0e0927a8876e02a32a162c16e31c20837a269e36 (diff) | |
parent | 6d3bbc5eeb9c9991c04e2a6b3d64f70526ecd312 (diff) | |
download | nextcloud-server-9c230f8c85cf80efb10093e66e1197c200c185c1.tar.gz nextcloud-server-9c230f8c85cf80efb10093e66e1197c200c185c1.zip |
Merge branch 'js_vcategories_to_tags' of github.com:owncloud/core into js_vcategories_to_tags
-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')); |