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

(-)a/about.pl (+4 lines)
Lines 277-282 if ( ! C4::Context->config('tmp_path') ) { Link Here
277
    }
277
    }
278
}
278
}
279
279
280
if( ! C4::Context->config('encryption_key') ) {
281
    push @xml_config_warnings, { error => 'encryption_key_missing' };
282
}
283
280
# Test Zebra facets configuration
284
# Test Zebra facets configuration
281
if ( !defined C4::Context->config('use_zebra_facets') ) {
285
if ( !defined C4::Context->config('use_zebra_facets') ) {
282
    push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
286
    push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-1 / +7 lines)
Lines 484-489 Link Here
484
                        The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
484
                        The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
485
                    </td>
485
                    </td>
486
                </tr>
486
                </tr>
487
                [% ELSIF config_entry.error == 'encryption_key_missing' %]
488
                <tr>
489
                    <th scope="row"><strong>Warning</strong></th>
490
                    <td>You are missing the &lt;encryption_key&gt; entry in your koha-conf.xml file.
491
                        Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
492
                    </td>
493
                </tr>
487
                [% END %]
494
                [% END %]
488
            [% END %]
495
            [% END %]
489
            </table>
496
            </table>
490
- 

Return to bug 28998