RE: Line ending problem while search Active Directory

2008-01-07 Thread Robin Mordasiewicz
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_va

RE: Line ending problem while search Active Directory

2008-01-07 Thread Don C. Miller
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"; Don -Original Message---