Lines 56-62
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
Link Here
|
56 |
# get framework list |
56 |
# get framework list |
57 |
my $frameworks = getframeworks; |
57 |
my $frameworks = getframeworks; |
58 |
my @frameworkcodeloop; |
58 |
my @frameworkcodeloop; |
59 |
foreach my $thisframeworkcode ( keys %$frameworks ) { |
59 |
foreach my $thisframeworkcode ( sort keys %$frameworks ) { |
60 |
my %row = ( |
60 |
my %row = ( |
61 |
value => $thisframeworkcode, |
61 |
value => $thisframeworkcode, |
62 |
frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'}, |
62 |
frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'}, |
63 |
- |
|
|