|
Lines 144-157
my $display_order = $input->param('item_group_display_order');
Link Here
|
| 144 |
our $frameworkcode = &GetFrameworkCode($biblionumber); |
144 |
our $frameworkcode = &GetFrameworkCode($biblionumber); |
| 145 |
|
145 |
|
| 146 |
# Defining which userflag is needing according to the framework currently used |
146 |
# Defining which userflag is needing according to the framework currently used |
| 147 |
my $fast_cataloging_mode; |
147 |
my $fast_cataloging_mode = |
| 148 |
if ( defined $input->param('frameworkcode') ) { |
148 |
defined $input->param('frameworkcode') |
| 149 |
$fast_cataloging_mode = ( $input->param('frameworkcode') eq 'FA' ) ? 1 : 0; |
149 |
? $input->param('frameworkcode') eq 'FA' |
| 150 |
} |
150 |
: $frameworkcode eq 'FA'; |
| 151 |
|
|
|
| 152 |
if ( not defined $fast_cataloging_mode ) { |
| 153 |
$fast_cataloging_mode = ( $frameworkcode eq 'FA' ) ? 1 : 0; |
| 154 |
} |
| 155 |
|
151 |
|
| 156 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
152 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
| 157 |
{ |
153 |
{ |
| 158 |
- |
|
|