View | Details | Raw Unified | Return to bug 40972
Collapse All | Expand All

(-)a/C4/XSLT.pm (-3 / +16 lines)
Lines 39-44 use C4::Koha qw( xml_escape ); Link Here
39
use C4::Biblio qw( GetAuthorisedValueDesc GetFrameworkCode GetMarcStructure );
39
use C4::Biblio qw( GetAuthorisedValueDesc GetFrameworkCode GetMarcStructure );
40
use Koha::AuthorisedValues;
40
use Koha::AuthorisedValues;
41
use Koha::ItemTypes;
41
use Koha::ItemTypes;
42
use Koha::Plugins;
42
use Koha::RecordProcessor;
43
use Koha::RecordProcessor;
43
use Koha::Libraries;
44
use Koha::Libraries;
44
use Koha::Recalls;
45
use Koha::Recalls;
Lines 197-206 sub XSLTParse4Display { Link Here
197
198
198
    my $xslfilename = get_xsl_filename($xslsyspref);
199
    my $xslfilename = get_xsl_filename($xslsyspref);
199
200
200
    my $frameworkcode    = GetFrameworkCode($biblionumber) || '';
201
    my $frameworkcode = GetFrameworkCode($biblionumber) || '';
202
    my $filters       = ['ExpandCodedFields'];
203
204
    Koha::Plugins->call(
205
        'xslt_record_processor_filters',
206
        {
207
            filters       => $filters,
208
            interface     => $interface,
209
            frameworkcode => $frameworkcode,
210
            xsl_syspref   => $xslsyspref,
211
            biblionumber  => $biblionumber,
212
        }
213
    );
214
201
    my $record_processor = Koha::RecordProcessor->new(
215
    my $record_processor = Koha::RecordProcessor->new(
202
        {
216
        {
203
            filters => ['ExpandCodedFields'],
217
            filters => $filters,
204
            options => {
218
            options => {
205
                interface     => $interface,
219
                interface     => $interface,
206
                frameworkcode => $frameworkcode
220
                frameworkcode => $frameworkcode
207
- 

Return to bug 40972