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

(-)a/about.pl (+7 lines)
Lines 61-66 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
61
    }
61
    }
62
);
62
);
63
63
64
my $time_zone = {
65
    actual      => C4::Context->timezone(),
66
    config      => C4::Context->config('timezone'),
67
    environment => $ENV{TZ},
68
};
69
$template->param( 'time_zone' => $time_zone );
70
64
my $perl_path = $^X;
71
my $perl_path = $^X;
65
if ($^O ne 'VMS') {
72
if ($^O ne 'VMS') {
66
    $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
73
    $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +4 lines)
Lines 111-116 Link Here
111
            [% ELSIF (errZebraConnection) %]
111
            [% ELSIF (errZebraConnection) %]
112
            <tr><th scope="row"><b>Warning</b> </th><td>Error message from Zebra: [% ( errZebraConnection ) %] </td></tr>
112
            <tr><th scope="row"><b>Warning</b> </th><td>Error message from Zebra: [% ( errZebraConnection ) %] </td></tr>
113
            [% END %]
113
            [% END %]
114
            <tr><th scope="row">Time zone: </th>
115
               <td>Used: [% time_zone.actual %]<br/>
116
                   Config: [% time_zone.config %]<br/>
117
                   ENV: [% time_zone.environment %]</td></tr>
114
        </table>
118
        </table>
115
        </div>
119
        </div>
116
        <div id="perl">
120
        <div id="perl">
117
- 

Return to bug 18674