Fixing content type ordering when content_type is not defined.
[akelos.git] / test / fixtures / app / controllers / post_controller.php
blob8a1cc58347791d467560f1630ec9cc7c16d5dd41
1 <?php
3 class PostController extends ApplicationController
5 var $finder_options = array('Post'=>array('include'=>'comments','order'=>'_comments.id'));
7 function comments()
9 $this->renderText(join('', Ak::collect($this->post->comments,'id','body')));