|
Lines 92-97
elsif ($session and not $input->param('clear_filters')) {
Link Here
|
| 92 |
my $op = $input->param('op') || q||; |
92 |
my $op = $input->param('op') || q||; |
| 93 |
|
93 |
|
| 94 |
my @errors = (); |
94 |
my @errors = (); |
|
|
95 |
|
| 96 |
my $version_string = Koha::version(); |
| 97 |
my ( $major, $minor, $maintenance, $development ) = split( '\.', $version_string ); |
| 98 |
my $schema_version = ( $development ne '000' ) ? "" : $major . "_" . $minor; |
| 99 |
$template->param( 'schema_version' => $schema_version ); |
| 100 |
|
| 95 |
if ( !$phase ) { |
101 |
if ( !$phase ) { |
| 96 |
$template->param( 'start' => 1 ); |
102 |
$template->param( 'start' => 1 ); |
| 97 |
# show welcome page |
103 |
# show welcome page |
| 98 |
- |
|
|