summaryrefslogtreecommitdiff
path: root/modules/gallery
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gallery')
-rw-r--r--modules/gallery/helpers/gallery_rest.php6
-rw-r--r--modules/gallery/tests/Gallery_Rest_Helper_Test.php4
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/gallery/helpers/gallery_rest.php b/modules/gallery/helpers/gallery_rest.php
index dba109fd..043e17b5 100644
--- a/modules/gallery/helpers/gallery_rest.php
+++ b/modules/gallery/helpers/gallery_rest.php
@@ -24,7 +24,7 @@ class gallery_rest_Core {
}
$item = ORM::factory("item")
- ->where("relative_path_cache", $request->path)
+ ->where("relative_url_cache", $request->path)
->viewable()
->find();
@@ -32,7 +32,7 @@ class gallery_rest_Core {
return rest::not_found("Resource: {$request->path} missing.");
}
- $response_data = array("path" => $item->relative_path(),
+ $response_data = array("path" => $item->relative_url(),
"title" => $item->title,
"thumb_url" => $item->thumb_url(),
"url" => $item->abs_url(),
@@ -54,7 +54,7 @@ class gallery_rest_Core {
foreach ($item->viewable()->children($limit, $offset, $where) as $child) {
$children[] = array("type" => $child->type,
"has_children" => $child->children_count() > 0,
- "path" => $child->relative_path(),
+ "path" => $child->relative_url(),
"title" => $child->title);
}
diff --git a/modules/gallery/tests/Gallery_Rest_Helper_Test.php b/modules/gallery/tests/Gallery_Rest_Helper_Test.php
index 1bf0b1ca..b874863f 100644
--- a/modules/gallery/tests/Gallery_Rest_Helper_Test.php
+++ b/modules/gallery/tests/Gallery_Rest_Helper_Test.php
@@ -58,7 +58,7 @@ class Gallery_Rest_Helper_Test extends Unit_Test_Case {
$this->assert_equal(
json_encode(array("status" => "OK",
- "album" => array("path" => $this->_child->relative_path(),
+ "album" => array("path" => $this->_child->relative_url_path(),
"title" => $this->_child->title,
"thumb_url" => $this->_child->thumb_url(),
"url" => $this->_child->abs_url(),
@@ -67,7 +67,7 @@ class Gallery_Rest_Helper_Test extends Unit_Test_Case {
"children" => array(array(
"type" => "photo",
"has_children" => false,
- "path" => $this->_photo->relative_path(),
+ "path" => $this->_photo->relative_url_path(),
"title" => $this->_photo->title))))),
gallery_rest::get($request));
}