From 1c96a986f662870f02914eeea73af739a3a5a037 Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Sun, 17 Jan 2021 14:23:02 +0100 Subject: [PATCH] Use config_get_global to access webmaster_email Issue #27884 --- core/layout_api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/layout_api.php b/core/layout_api.php index cf8127f898..dd9fc4c2c3 100644 --- a/core/layout_api.php +++ b/core/layout_api.php @@ -1161,7 +1161,7 @@ function layout_footer() { # Show contact information if( !is_page_name( 'login_page' ) ) { - $t_webmaster_contact_information = sprintf( lang_get( 'webmaster_contact_information' ), string_html_specialchars( config_get( 'webmaster_email' ) ) ); + $t_webmaster_contact_information = sprintf( lang_get( 'webmaster_contact_information' ), string_html_specialchars( config_get_global( 'webmaster_email' ) ) ); echo '' . $t_webmaster_contact_information . '' . '
' . "\n"; }