Lines 132-137
if ( $tab eq 'about' ) {
Link Here
|
132 |
|
132 |
|
133 |
my $zebraVersion = `zebraidx -V`; |
133 |
my $zebraVersion = `zebraidx -V`; |
134 |
|
134 |
|
|
|
135 |
my $errZebraConnection = C4::Context->Zconn( "biblioserver", 0 )->errcode(); |
136 |
|
135 |
# Check running PSGI env |
137 |
# Check running PSGI env |
136 |
if ( C4::Context->psgi_env ) { |
138 |
if ( C4::Context->psgi_env ) { |
137 |
$template->param( |
139 |
$template->param( |
Lines 173-178
if ( $tab eq 'about' ) {
Link Here
|
173 |
where_is_memcached_config => $where_is_memcached_config, |
175 |
where_is_memcached_config => $where_is_memcached_config, |
174 |
perlPath => $perl_path, |
176 |
perlPath => $perl_path, |
175 |
zebraVersion => $zebraVersion, |
177 |
zebraVersion => $zebraVersion, |
|
|
178 |
errZebraConnection => $errZebraConnection, |
176 |
kohaVersion => $versions{'kohaVersion'}, |
179 |
kohaVersion => $versions{'kohaVersion'}, |
177 |
osVersion => $versions{'osVersion'}, |
180 |
osVersion => $versions{'osVersion'}, |
178 |
perlVersion => $versions{'perlVersion'}, |
181 |
perlVersion => $versions{'perlVersion'}, |
Lines 230-237
if ( $tab eq 'sysinfo' ) {
Link Here
|
230 |
); |
233 |
); |
231 |
$template->param( invalid_yesno => $invalid_yesno ); |
234 |
$template->param( invalid_yesno => $invalid_yesno ); |
232 |
|
235 |
|
233 |
my $errZebraConnection = C4::Context->Zconn( "biblioserver", 0 )->errcode(); |
|
|
234 |
|
235 |
my $warnIsRootUser = ( !$loggedinuser ); |
236 |
my $warnIsRootUser = ( !$loggedinuser ); |
236 |
|
237 |
|
237 |
my $warnNoActiveCurrency = ( !defined Koha::Acquisition::Currencies->get_active ); |
238 |
my $warnNoActiveCurrency = ( !defined Koha::Acquisition::Currencies->get_active ); |
Lines 599-605
if ( $tab eq 'sysinfo' ) {
Link Here
|
599 |
$warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist, |
600 |
$warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist, |
600 |
warnPrefKohaAdminEmailAddress => $warnPrefKohaAdminEmailAddress, |
601 |
warnPrefKohaAdminEmailAddress => $warnPrefKohaAdminEmailAddress, |
601 |
warnPrefOpacHiddenItems => $warnPrefOpacHiddenItems, |
602 |
warnPrefOpacHiddenItems => $warnPrefOpacHiddenItems, |
602 |
errZebraConnection => $errZebraConnection, |
|
|
603 |
warnIsRootUser => $warnIsRootUser, |
603 |
warnIsRootUser => $warnIsRootUser, |
604 |
warnNoActiveCurrency => $warnNoActiveCurrency, |
604 |
warnNoActiveCurrency => $warnNoActiveCurrency, |
605 |
warnNoTemplateCaching => ( C4::Context->config('template_cache_dir') ? 0 : 1 ), |
605 |
warnNoTemplateCaching => ( C4::Context->config('template_cache_dir') ? 0 : 1 ), |
606 |
- |
|
|