Test plan:
Make sure that you have no encryption_key in koha-conf.
Check about page, system information tab.
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
}
}
+if( ! C4::Context->config('encryption_key') ) {
+ push @xml_config_warnings, { error => 'encryption_key_missing' };
+}
+
# Test Zebra facets configuration
if ( !defined C4::Context->config('use_zebra_facets') ) {
push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
</td>
</tr>
+ [% ELSIF config_entry.error == 'encryption_key_missing' %]
+ <tr>
+ <th scope="row"><strong>Warning</strong></th>
+ <td>You are missing the <encryption_key> entry in your koha-conf.xml file.
+ Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
+ </td>
+ </tr>
[% END %]
[% END %]
</table>