From 65d5f1a0105fe3e118924d2d83380557ce20e789 Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Mon, 25 Jun 2012 22:35:30 +0200 Subject: [PATCH] Fix #14418: Alternate text for logo image is hardcoded --- core/html_api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/html_api.php b/core/html_api.php index 9b222c2fb3..bd0b382f49 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -498,7 +498,8 @@ function html_top_banner() { if( $t_show_url ) { echo ''; } - echo 'Mantis Bug Tracker'; + $t_alternate_text = string_html_specialchars( config_get( 'window_title' ) ); + echo '', $t_alternate_text, ''; if( $t_show_url ) { echo ''; }