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

(-)a/cataloguing/addbiblio.pl (-15 / +1 lines)
Lines 746-766 if ($frameworkcode eq 'FA'){ Link Here
746
}
746
}
747
747
748
748
749
# Getting the list of all frameworks
749
$template->param( frameworkcodeloop => GetFrameworksLoop( $frameworkcode ) ,
750
# get framework list
751
my $frameworks = getframeworks;
752
my @frameworkcodeloop;
753
foreach my $thisframeworkcode ( keys %$frameworks ) {
754
	my %row = (
755
		value         => $thisframeworkcode,
756
		frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
757
	);
758
	if ($frameworkcode eq $thisframeworkcode){
759
		$row{'selected'} = 1;
760
		}
761
	push @frameworkcodeloop, \%row;
762
} 
763
$template->param( frameworkcodeloop => \@frameworkcodeloop,
764
	breedingid => $breedingid );
750
	breedingid => $breedingid );
765
751
766
# ++ Global
752
# ++ Global
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-2 / +1 lines)
Lines 500-506 function Changefwk(FwkList) { Link Here
500
                        [% ELSE %]
500
                        [% ELSE %]
501
                            <i class="fa fa-fw">&nbsp;</i>
501
                            <i class="fa fa-fw">&nbsp;</i>
502
                        [% END %]
502
                        [% END %]
503
                        [% frameworkcodeloo.frameworktext %]
503
                        [% frameworkcodeloo.description %]
504
                    </a>
504
                    </a>
505
                </li>
505
                </li>
506
            [% END %]
506
            [% END %]
507
- 

Return to bug 16807