Line 648 is incorrect
it reads:
return $this->objectify( $out );
however $out is undeclared and so this does nothing at all. I think you want:
return $this->objectify( $this->process( $request ) ); // fixed
Original issue reported on code.google.com by matt...@thanetstar.com on 23 Mar 2009 at 5:53
Original issue reported on code.google.com by
matt...@thanetstar.com
on 23 Mar 2009 at 5:53