|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:48:19
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19211/templates/default/admin Modified Files: Tag: htmltemplates wrap.html Log Message: Fix from mufasa for bug #1002677 - Wrong path for admin bug search form. Index: wrap.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v retrieving revision 1.23.4.2 retrieving revision 1.23.4.3 diff -u -r1.23.4.2 -r1.23.4.3 --- wrap.html 17 Nov 2003 12:41:16 -0000 1.23.4.2 +++ wrap.html 4 Sep 2004 20:48:10 -0000 1.23.4.3 @@ -4,7 +4,7 @@ <title>phpBugTracker Admin - <?php echo $page_title; ?></title> <link rel="StyleSheet" href="../styles/<?php echo $STYLE; ?>.css" type="text/css"> <link rel="stylesheet" type"text/css" href="../styles/print.css" media="print"> - <META http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> + <?php if (defined('CHARSET')) echo '<META http-equiv="Content-Type" content="text/html; charset='.CHARSET.'">'; ?> </head> <body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"> <div class="nav"> @@ -12,7 +12,7 @@ <img name="title" src="<?php echo $template_path ?>/../images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"> </div> <div class="header_search"> - <form action="bug.php"> + <form action="../bug.php"> <input type="hidden" name="op" value="show"> <?php echo translate("Find Bug") ?> <input name="bugid" type="text" id="bugid" size="4"> |