$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

User profile page. Want to ...

55502f40dc8b7c769880b10874abc9d0 Talk
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...

55502f40dc8b7c769880b10874abc9d0 Talk