Skip to content

Commit

Permalink
XHTML validation fix.
Browse files Browse the repository at this point in the history
ampersand (&) chars in pages and links should always be written as &


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4448 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
giallu committed Jul 17, 2007
1 parent bce0af3 commit 55d4c65
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.206 2007-05-07 17:46:02 prichards Exp $
# $Id: html_api.php,v 1.207 2007-07-17 13:35:09 giallu Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -542,7 +542,7 @@ function print_menu() {

# Project Wiki
if ( wiki_is_enabled() ) {
$t_menu_options[] = '<a href="wiki.php?type=project&id=' . $t_current_project . '">' . lang_get( 'wiki' ) . '</a>';
$t_menu_options[] = '<a href="wiki.php?type=project&amp;id=' . $t_current_project . '">' . lang_get( 'wiki' ) . '</a>';
}

# Manage Users (admins) or Manage Project (managers) or Manage Custom Fields
Expand Down

0 comments on commit 55d4c65

Please sign in to comment.