@@ -, +, @@ set - In the OPAC you should see the "System Maintenance" page. - Test this page with various settings: - ReplytoDefault and KohaAdminEmailAddress both populated. - Only ReplytoDefault - Only KohaAdminEmailAddress - Neither. Confirm that the correct email address is used in each case. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/maintenance.tt | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/maintenance.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/maintenance.tt @@ -40,7 +40,14 @@ [% Koha.Preference( 'OpacMaintenanceNotice' ) | $raw %] [% ELSE %]

System Maintenance

-

The [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog is offline for system maintenance. We'll be back soon! If you have any questions, please contact the site administrator

+

+ The [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog is offline for system maintenance. We'll be back soon! + [% IF ( Koha.Preference( 'ReplytoDefault' ) ) %] + If you have any questions, please contact the site administrator + [% ELSIF ( Koha.Preference( 'KohaAdminEmailAddress' ) ) %] + If you have any questions, please contact the site administrator + [% END %] +

[% END %] --