Lines 1161-1167
sub expand_template {
Link Here
|
1161 |
my ( $self, $params ) = @_; |
1161 |
my ( $self, $params ) = @_; |
1162 |
my $backend = $self->_backend->name; |
1162 |
my $backend = $self->_backend->name; |
1163 |
|
1163 |
|
1164 |
if ( $backend eq 'Standard' ) { |
1164 |
if ( $backend eq 'Standard' |
|
|
1165 |
|| ( $params->{method} eq 'edititem' && C4::Context->preference("AutoILLBackendPriority") ) ) |
1166 |
{ |
1165 |
|
1167 |
|
1166 |
my $template_name = 'ill/backends/Standard/' . ( $params->{method} // q{} ) . '.inc'; |
1168 |
my $template_name = 'ill/backends/Standard/' . ( $params->{method} // q{} ) . '.inc'; |
1167 |
|
1169 |
|
1168 |
- |
|
|