Re: problem with insert_grouped_field

2003-07-03 Thread Ed Summers
On Thu, Jul 03, 2003 at 10:25:57AM -0500, Anne Highsmith wrote: > Thanks. I don't think there's an example of how to use > insert_grouped_field in any of the doc; I was wrong, it's from the MARC::Record package not MARC::Field :-) http://marcpm.sourceforge.net/MARC/Record.html The MARC:

Re: problem with insert_grouped_field

2003-07-03 Thread Ed Summers
On Thu, Jul 03, 2003 at 09:59:41AM -0500, Anne Highsmith wrote: > insert_grouped_field($new_field); insert_grouped_field() is a object method, so you'll need to call it using the record object that you want to add the field to: $record->insert_grouped_field( $new_field ); The tip