Subject: | setup_form_mode in model doesn't handle multiple pk's |
Lines 77 and following:
my $pk = $proto->primary_column;
my %additional = ref( $proto ) ? ( additional => $proto->$pk ) : ();
It should presumably be something like:
my @pk = ($proto->primary_column);
my %additional = ref( $proto ) ? (additional => join('/', map { $proto->$_ } @pk)) : ();
Or possibly something less ugly, but take your pick...