
racke at linuxia
Oct 12, 2009, 2:03 AM
Post #2 of 3
(812 views)
Permalink
|
|
Re: Unknown field name 'status' used in tag item-param
[In reply to]
|
|
Salvador Caballé wrote: > I'm working to upgrade an old catalog to the latest > interchange version , and I see the following error > in the error.log: > > /admin/item.html Unknown field name 'status' used in tag item-param > > I also checked the error log in icdevgroup demo site, and I see the same > message. > > Everything seems to work well, but I was not the reason for this error No, the error comes from this part of ITL on item.html: [item-calc] my $string = ''; if(! $Scratch->{old_browser}) { my $nm = 'checker[item-increment]'; push @els, qq{push_el('$nm', '[item-param status]');}; $string .= "id=$nm "; } return $string if $Scratch->{archive_nm} eq 'unarchive'; $string .= 'CHECKED' if q{[item-param status]} eq $Values->{checked_status}; return $string; [/item-calc] It looks like that code was added here by mistake, as items has neither status nor archive fields. Regards Racke -- LinuXia Systems => http://www.linuxia.de/ Expert Interchange Consulting and System Administration ICDEVGROUP => http://www.icdevgroup.org/ Interchange Development Team _______________________________________________ interchange-users mailing list interchange-users [at] icdevgroup http://www.icdevgroup.org/mailman/listinfo/interchange-users
|