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