On Mon, 7 Jan 2008, Don C. Miller wrote: > Robin, take a look at the get_value documentation about what is returned > in a list context vs. a scalar context. Without seeing the code I > assume you are returning this in scalar. Try: > > print "$attribute: ",join("\n$attribute: > ",$object->get_value($attribute)),"\n"; >
Thank you, that did correct my problem. FYI the bad code that I was using, was... print PERSON_LDIF_FH "\t$attribute: ", $object->get_value($attribute) ,"\n"; Your recommendation solved my problem.