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

(-)a/about.pl (+5 lines)
Lines 48-53 use Koha::BackgroundJob; Link Here
48
use Koha::BiblioFrameworks;
48
use Koha::BiblioFrameworks;
49
use Koha::Biblios;
49
use Koha::Biblios;
50
use Koha::Email;
50
use Koha::Email;
51
use Koha::I18N;
51
use Koha::Patron::Categories;
52
use Koha::Patron::Categories;
52
use Koha::Patrons;
53
use Koha::Patrons;
53
use Koha::Caches;
54
use Koha::Caches;
Lines 291-296 if ( !defined C4::Context->config('use_zebra_facets') ) { Link Here
291
    push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
292
    push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
292
}
293
}
293
294
295
unless ( Koha::I18N->_base_directory ) {
296
    $template->param( warnI18nMissing => 1 );
297
}
298
294
# ILL module checks
299
# ILL module checks
295
if ( C4::Context->preference('ILLModule') ) {
300
if ( C4::Context->preference('ILLModule') ) {
296
    my $warnILLConfiguration = 0;
301
    my $warnILLConfiguration = 0;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-2 / +9 lines)
Lines 273-279 Link Here
273
                        [% SET warnMissingCompiledFiles = 1 %]
273
                        [% SET warnMissingCompiledFiles = 1 %]
274
                    [% END %]
274
                    [% END %]
275
                    [% WRAPPER tab_panel tabname= "sysinfo" %]
275
                    [% WRAPPER tab_panel tabname= "sysinfo" %]
276
                        [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker || elasticsearch_has_missing || warnMissingCompiledFiles || warnDbRowFormat %]
276
                        [% IF weasyprint_missing || warnPrefRequireChoosingExistingAuthority || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || warnPrefPatronSelfRegistrationDefaultCategory || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || warnI18nMissing || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker || elasticsearch_has_missing || warnMissingCompiledFiles || warnDbRowFormat %]
277
                            [% IF ( warnDbRowFormat ) %]
277
                            [% IF ( warnDbRowFormat ) %]
278
                                <h2>Database row format incorrect</h2>
278
                                <h2>Database row format incorrect</h2>
279
                                <p>Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]</p>
279
                                <p>Database tables with a row format other than 'DYNAMIC': [% warnDbRowFormat | html %]</p>
Lines 519-524 Link Here
519
                                            </td>
519
                                            </td>
520
                                        </tr>
520
                                        </tr>
521
                                    [% END %]
521
                                    [% END %]
522
                                    [% IF warnI18nMissing %]
523
                                        <tr>
524
                                            <th scope="row"><strong>Warning</strong> </th>
525
                                            <td>
526
                                                The PO directory has not been found. See <a href="https://wiki.koha-community.org/wiki/Translation_files">the dedicated wiki page</a> for more information.
527
                                            </td>
528
                                        </tr>
529
                                    [% END %]
522
                                    [% IF warnILLConfiguration %]
530
                                    [% IF warnILLConfiguration %]
523
                                        [% IF no_ill_backends %]
531
                                        [% IF no_ill_backends %]
524
                                            <tr>
532
                                            <tr>
525
- 

Return to bug 35174