@@ -, +, @@ Server information tab. --- about.pl | 7 +++++++ koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 4 ++++ 2 files changed, 11 insertions(+) --- a/about.pl +++ a/about.pl @@ -61,6 +61,13 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); +my $time_zone = { + actual => C4::Context->timezone(), + config => C4::Context->config('timezone'), + environment => $ENV{TZ}, +}; +$template->param( 'time_zone' => $time_zone ); + my $perl_path = $^X; if ($^O ne 'VMS') { $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -111,6 +111,10 @@ [% ELSIF (errZebraConnection) %] Warning Error message from Zebra: [% ( errZebraConnection ) %] [% END %] + Time zone: + Used: [% time_zone.actual %]
+ Config: [% time_zone.config %]
+ ENV: [% time_zone.environment %]
--