| Summary: | No way to know what keywords to use for Keyword Mapping | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Nicole C. Engard <nengard> |
| Component: | System Administration | Assignee: | Bugs List <koha-bugs> |
| Status: | CLOSED WONTFIX | QA Contact: | Bugs List <koha-bugs> |
| Severity: | normal | ||
| Priority: | P5 - low | CC: | mjr, veron |
| Version: | Main | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
| Bug Depends on: | 11529 | ||
| Bug Blocks: | |||
|
Description
Chris Cormack
2010-05-21 01:23:55 UTC
Changing severity, since without any keyword mappings for subtitle most pages won't show it. I did a search for GetRecordValue and found one place with other values than 'subtitle'.
(BTW: I did not find any calls to GetRecordValue where the first parameter was a variable.)
C4\HoldsQueue.pm
sub GetHoldsQueueItems
Line 141: $row->{parts} = GetRecordValue('parts',$record,'')->[0]->{subfield};
Line 142: $row->{numbers} = GetRecordValue('numbers',$record,'')->[0]->{subfield};
GetHoldQueItems then is used in circ\view_holdsqueue.pl
But the values 'parts' and 'numbers' are not used in view_holdsque.tt
With other words we have:
'subtitle': used at many places
'parts': not (yet?) used
'numbers': not (yet?) used
|