From 549b88643acd571367a3b21f6dce6d42af7e7edf Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Tue, 19 Jan 2010 01:35:59 -0800 Subject: Fix a typo "tags" -> "tag" --- modules/tag/helpers/tags_rest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/tag/helpers') diff --git a/modules/tag/helpers/tags_rest.php b/modules/tag/helpers/tags_rest.php index dd23e97f..41317ecd 100644 --- a/modules/tag/helpers/tags_rest.php +++ b/modules/tag/helpers/tags_rest.php @@ -21,7 +21,7 @@ class tags_rest_Core { static function get($request) { $tags = array(); foreach (ORM::factory("tag")->find_all() as $tag) { - $tags[$tag->name] = rest::url("tags", $tag); + $tags[$tag->name] = rest::url("tag", $tag); } return array("members" => $tags); } -- cgit v1.2.3