From 6e6dd27e1a46195bf01de0847fd03d15deb08647 Mon Sep 17 00:00:00 2001 From: Julian Fitzell Date: Sat, 22 Feb 2003 22:14:08 +0000 Subject: [PATCH] Fix issue #2991 * core/html_api.php (html_footer): remove an extra " git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1994 f5dc347c-c33d-0410-90a0-b07cc1902cb9 --- core/html_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/html_api.php b/core/html_api.php index 99cec4d78b..38cb623cf9 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -6,7 +6,7 @@ # See the README and LICENSE files for details # -------------------------------------------------------- - # $Id: html_api.php,v 1.60 2003-02-22 11:53:44 jfitzell Exp $ + # $Id: html_api.php,v 1.61 2003-02-22 22:14:08 jfitzell Exp $ # -------------------------------------------------------- ########################################################################### @@ -302,7 +302,7 @@ function html_footer( $p_file ) { echo "Mantis " . config_get( 'mantis_version' ) . ""; } echo '
Copyright (C) 2000 - 2003
'; - echo '
' . config_get( 'webmaster_email' ) . '
'; + echo '
' . config_get( 'webmaster_email' ) . '
'; if ( ON == config_get( 'show_timer' ) ) { $g_timer->print_times(); }