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

(-)a/help.pl (+9 lines)
Lines 57-60 unless ( -e "$htdocs/$theme/$lang/modules/$from" ) { Link Here
57
my $template = C4::Templates::gettemplate($from, 'intranet', $query);
57
my $template = C4::Templates::gettemplate($from, 'intranet', $query);
58
$template->param( referer => $refer );
58
$template->param( referer => $refer );
59
59
60
my $help_version = C4::Context->preference("Version");
61
if ( $help_version =~ m|^(\d+)\.(\d{2}).*$| ) {
62
    my $version = $1;
63
    my $major = $2;
64
    if ( $major % 2 ) { $major-- };
65
    $help_version = "$version.$major";
66
}
67
$template->param( helpVersion => $help_version );
68
60
output_html_with_http_headers $query, "", $template->output;
69
output_html_with_http_headers $query, "", $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/about.tt (-3 / +2 lines)
Lines 20-25 Link Here
20
20
21
<p>Koha is developed and supported by a large number of developers around the world. Thanks to all the developers and libraries who support Koha</p>
21
<p>Koha is developed and supported by a large number of developers around the world. Thanks to all the developers and libraries who support Koha</p>
22
22
23
<p><strong>See the full documentation for the About page in the <a href="http://manual.koha-community.org/3.10/en/aboutkoha.html">manual</a> (online).</strong></p>
23
<p><strong>See the full documentation for the About page in the <a href="http://manual.koha-community.org/[% helpVersion %]/en/aboutkoha.html">manual</a> (online).</strong></p>
24
24
25
[% INCLUDE 'help-bottom.inc' %]
25
[% INCLUDE 'help-bottom.inc' %]
26
- 

Return to bug 9850