Skip to content

Commit

Permalink
Fix issue #2991
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Julian Fitzell committed Feb 22, 2003
1 parent e1842bc commit 6e6dd27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/html_api.php
Expand Up @@ -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 $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -302,7 +302,7 @@ function html_footer( $p_file ) {
echo "<span class=\"timer\"><a href=\"http://mantisbt.sourceforge.net/\">Mantis " . config_get( 'mantis_version' ) . "</a></span>";
}
echo '<address>Copyright (C) 2000 - 2003</address>';
echo '<address><a href="mailto:"' . config_get( 'webmaster_email' ) . '">' . config_get( 'webmaster_email' ) . '</a></address>';
echo '<address><a href="mailto:' . config_get( 'webmaster_email' ) . '">' . config_get( 'webmaster_email' ) . '</a></address>';
if ( ON == config_get( 'show_timer' ) ) {
$g_timer->print_times();
}
Expand Down

0 comments on commit 6e6dd27

Please sign in to comment.