diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-06-06 12:42:16 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-06-06 12:42:16 -0700 |
commit | e1d3b0295d0f6d098a7b5563aa1f5b6af247319f (patch) | |
tree | d2ac74b1272673b24a2d5e9c104d257ad5bac60d | |
parent | 4e56176f35fe624d2d3a587636a4a45ea387be09 (diff) |
Change "ancestor_for" to "ancestors_for" for consistency.
-rw-r--r-- | modules/gallery/helpers/items_rest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/gallery/helpers/items_rest.php b/modules/gallery/helpers/items_rest.php index 32f6c036..9cca9a54 100644 --- a/modules/gallery/helpers/items_rest.php +++ b/modules/gallery/helpers/items_rest.php @@ -21,14 +21,14 @@ class items_rest_Core { /** * To retrieve a collection of items, you can specify the following query parameters to specify * the type of the collection. If both are specified, then the url parameter is used and the - * ancestor_for is ignored. Specifying the "type" parameter with the urls parameter, will + * ancestors_for is ignored. Specifying the "type" parameter with the urls parameter, will * filter the results based on the specified type. Using the type parameter with the - * ancestor_for parameter makes no sense and will be ignored. + * ancestors_for parameter makes no sense and will be ignored. * * urls=url1,url2,url3 * return items that match the specified urls. Typically used to return the member detail * - * ancestor_for=url + * ancestors_for=url * return the ancestors of the specified item * * type=<comma separate list of photo, movie or album> @@ -52,8 +52,8 @@ class items_rest_Core { } } } - } else if (isset($request->params->ancestor_for)) { - $item = rest::resolve($request->params->ancestor_for); + } else if (isset($request->params->ancestors_for)) { + $item = rest::resolve($request->params->ancestors_for); if (!access::can("view", $item)) { throw new Kohana_404_Exception(); } |