Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <prescience@us...> - 2002-08-31 23:31:25
|
Update of /cvsroot/mantisbt/web In directory usw-pr-cvs1:/tmp/cvs-serv32270/web Modified Files: survey.php3 top.php3 Log Message: changed input tags to have the proper empty tag format for XTHML compliance. This is a blind checkin. I have not confirmed all pages, however, there were no problems with a sample page using Moz, Opera, and IE in windows. Index: survey.php3 =================================================================== RCS file: /cvsroot/mantisbt/web/survey.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- survey.php3 13 May 2002 03:49:38 -0000 1.7 +++ survey.php3 31 Aug 2002 23:31:22 -0000 1.8 @@ -26,9 +26,9 @@ <p> <font size=-1>There is a limit of 10,000 characters. The system will be disabled if abused.</font> <form action="survey_add.php3" method="POST"> - <input type=hidden name="f_subject" value="<? echo $subject ?>"> + <input type=hidden name="f_subject" value="<? echo $subject ?>" /> <textarea name="f_message" cols=72 rows=25><? echo $question ?></textarea><br /> - <input type=submit value=" Send "> + <input type=submit value=" Send " /> </form> <p> Index: top.php3 =================================================================== RCS file: /cvsroot/mantisbt/web/top.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- top.php3 19 Aug 2002 03:11:08 -0000 1.7 +++ top.php3 31 Aug 2002 23:31:22 -0000 1.8 @@ -55,11 +55,11 @@ <td class="middle" colspan="3"> <form method="GET" action="http://www.google.com/custom"> <!-- Search Google --> -<input class="small" type="text" name="q" size="16" maxlength="255" value=""> -<input class="small" type="submit" name="sa" value="Search"> -<input class="small" type="hidden" name="cof" value="L:http://mantisbt.sourceforge.net/images/banner.gif;AH:center;AWFID:124d3521c6d75a4f;"> -<input class="small" type="hidden" name="domains" value="mantisbt.sourceforge.net"> -<input class="small" type="hidden" name="sitesearch" value="mantisbt.sourceforge.net" checked="checked"> +<input class="small" type="text" name="q" size="16" maxlength="255" value="" /> +<input class="small" type="submit" name="sa" value="Search" /> +<input class="small" type="hidden" name="cof" value="L:http://mantisbt.sourceforge.net/images/banner.gif;AH:center;AWFID:124d3521c6d75a4f;"; /> +<input class="small" type="hidden" name="domains" value="mantisbt.sourceforge.net" /> +<input class="small" type="hidden" name="sitesearch" value="mantisbt.sourceforge.net" checked="checked" /> <!-- Search Google --> </form> </td> |