This commit is contained in:
Parziphal 2014-07-03 15:32:53 -05:00
parent 195ec3896b
commit 193c5cc514

View File

@ -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()]);