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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/guided-reports-view.inc (-1 / +1 lines)
Lines 12-18 Link Here
12
<h5>Useful resources</h5>
12
<h5>Useful resources</h5>
13
<ul>
13
<ul>
14
<li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha report library</a></li>
14
<li><a href="http://wiki.koha-community.org/wiki/SQL_Reports_Library" target="blank">Koha report library</a></li>
15
<li><a href="http://schema.koha-community.org/" target="blank">Koha database schema</a></li>
15
<li><a href="http://schema.koha-community.org/[% schema_version | uri %]" target="blank">Koha database schema</a></li>
16
</ul>
16
</ul>
17
</div>
17
</div>
18
</div>
18
</div>
(-)a/reports/guided_reports.pl (-1 / +6 lines)
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
- 

Return to bug 28454