$debates = ORM::factory('debate')->with('user')->with('category');
// what debates are we showing?
...
PHP Code seems inefficient. Sug...
by openid.aol.com/bduelz,
April 13, 2010 06:42,
1 refactoring
public function view($id = 0)
{
$debate = ORM::factory('debate')->with('user')->with('category')->find($id);
...
PHP Better way to check whether...
by openid.aol.com/bduelz,
April 13, 2010 06:14,
4 refactorings
Code for a view debate page...
User profile page. Want to ...