From 193c5cc514971c8c3c860eba68f2e4375888a343 Mon Sep 17 00:00:00 2001 From: Parziphal Date: Thu, 3 Jul 2014 15:32:53 -0500 Subject: [PATCH] Fixed #99. --- app/views/post/index.xml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/post/index.xml.php b/app/views/post/index.xml.php index f68c9d0..4f6285e 100755 --- a/app/views/post/index.xml.php +++ b/app/views/post/index.xml.php @@ -5,6 +5,6 @@ echo $this->contentTag('posts', function() { echo "\n"; foreach ($this->posts as $post) { - echo ' ' . $this->tag('post', $post->api_attributes()) . "\n"; + echo ' ' . $this->tag('post', $post->api_attributes(), false, true) . "\n"; } }, ['count' => $this->posts->totalRows(), 'offset' => ($this->posts->currentPage() - 1) * $this->posts->perPage()]);