Good afternoon,
On 25/10/10 at 10:57 PM -0700, Alan Humphrey <[email protected]> wrote:
>If I use the stash method I get an error:
>
> $ctx->stash( data => $ctx->model("BirdWebDB::Orders")->search({
>'me.taxonomic_order' => {'not' => undef},
You're probably getting caught by list context; use search_rs instead:
$ctx->stash( data => $ctx->model("BirdWebDB::Orders")->search_rs({
'me.taxonomic_order' => {'not' => undef},
....
Charlie
--
Ꮚ Charlie Garrison ♊ <[email protected]>
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
〠 http://www.ietf.org/rfc/rfc1855.txt
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/