I have the following code:
$request = Model_Request::find_by_shortened_id(3);
echo var_dump($request->name);
it returns 1 row if i execute the query that I got from the profiler manually, however when I try to access the attribute of $request->name, it returns undefined, what gives?
edit:
this is the code for the model: http://pastebin.com/qUrP3aSU
You are overwriting the __construct() method without supporting its native implementation (passing on the args it gets passed to the parent::__construct()), thus hydration of the instances could never work.