
david at kineticode
Jul 21, 2008, 10:44 AM
Post #2 of 2
(172 views)
Permalink
|
On Jul 18, 2008, at 14:01, Ashlee Caul wrote: > I have a name, for example Ashlee Caul, ,and I want to find the > contributor with lname Caul and fname Ashlee. I do not know whether > that contrib exists or not. In a template, how can I search for a > contrib by name? my $grp = Bric::Util::Grp::Person->lookup({ name => $contrib_type_name }); my $contrib = Bric::Util::Grp::Parts::Member::Contrib->list({ grp => $grp, fname => 'Ashlee', lname => 'Caul', }); HTH, David
|