Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
w3c validator fixes
  • Loading branch information
slankes committed Nov 13, 2008
1 parent 2e39992 commit 2bd701e
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 65 deletions.
20 changes: 10 additions & 10 deletions contact_us.php
Expand Up @@ -108,44 +108,44 @@ function checkForm(){
</div>

<br />
<form name="frmAddEntry" method="post" onsubmit="return v.exec()">
<form name="frmAddEntry" method="post" onsubmit="return v.exec()" action="">

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20%" style="padding:10px;">Contact Name:</td>
<td width="80%" style="padding:10px;"><input valign="top" style="width:270px;" name="contact_name" type="text" id="contact_name" value="<?php echo htmlspecialchars( $f_contact_name ); ?>"></td>
<td width="80%" style="padding:10px;"><input style="width:270px;" name="contact_name" type="text" id="contact_name" value="<?php echo htmlspecialchars( $f_contact_name ); ?>" /></td>
</tr>
<tr>
<td style="padding:10px;">Email Address:</td>
<td style="padding:10px;"><input valign="top" style="width:270px;" name="contact_email" type="text" id="contact_email" value="<?php echo htmlspecialchars( $f_contact_email ); ?>"></td>
<td style="padding:10px;"><input style="width:270px;" name="contact_email" type="text" id="contact_email" value="<?php echo htmlspecialchars( $f_contact_email ); ?>" /></td>
</tr>
<tr>
<td style="padding:10px;">Subject:</td>
<td style="padding:10px;"><input valign="top" style="width:270px;" name="subject" type="text" id="subject" value="<?php echo htmlspecialchars( $f_subject ); ?>"></td>
<td style="padding:10px;"><input style="width:270px;" name="subject" type="text" id="subject" value="<?php echo htmlspecialchars( $f_subject ); ?>" /></td>
</tr>
<tr>
<td width="20%" style="padding:10px;">Body:</td>
<td width="80%" style="padding:10px;"><textarea valign="top" wrap="ON" name="email_body" id="email_body" style="height:100px; width:270px; font-size:12px; margin:0; padding:0;"><?php echo htmlspecialchars( $f_email_body ); ?></textarea></td>
<td width="80%" style="padding:10px;"><textarea name="email_body" id="email_body" style="height:100px; width:270px; font-size:12px; margin:0; padding:0;" rows="6" cols="40"><?php echo htmlspecialchars( $f_email_body ); ?></textarea></td>
</tr>
<tr>
<td style="padding:10px;"></td>
<td style="padding:10px;"><?php echo $captcha->display_captcha()?><br><?php if ( isset( $captcha->msg1 ) ) { echo $captcha->msg1; } ?></td>
<td style="padding:10px;"><?php echo $captcha->display_captcha()?><br /><?php if ( isset( $captcha->msg1 ) ) { echo $captcha->msg1; } ?></td>
</tr>
<tr>
<td style="padding:10px;">Captcha:</td>
<td style="padding:10px;"><input type="text" name="private_key" value="" maxlength="5" size="5"></td>
<td style="padding:10px;"><input type="text" name="private_key" value="" maxlength="5" size="5" /></td>
</tr>
<tr>
<td style="padding:10px;">&nbsp;</td>
<td style="padding:10px;">
<input name="admAdd" type="submit" id="admAdd" value="Submit">
<input name="issubmit" type="hidden" value="1">
<input name="admAdd" type="submit" id="admAdd" value="Submit" />
<input name="issubmit" type="hidden" value="1" />
</td>
</tr>
</table>
</form>

<script language="JavaScript">
<script type="text/javascript">

var o_fields = {
'contact_name':{'l':'Contact Name','r':true},
Expand Down
2 changes: 1 addition & 1 deletion directory.php
Expand Up @@ -7,7 +7,7 @@
include( "top.php" );
?>

<h4>>MantisBT Users Directory</h4>
<h4>MantisBT Users Directory</h4>

<p>This is a directory of companies and open source projects that are using MantisBT as their issue tracking system. If your company is not listed below, or you know of an open source project that uses MantisBT but is not listed below, please <a href="directory_entry_submit.php">submit</a> it here.</p>

Expand Down
4 changes: 2 additions & 2 deletions documentation.php
Expand Up @@ -10,8 +10,8 @@
</p>

<ul>
<li><a href="http://www.mantisforge.org/documentation/">The MantisBT Manual (v1.2.x).</li>
<li><a href="/manual/">The MantisBT Manual (up to v1.1.x).</li>
<li><a href="http://www.mantisforge.org/documentation/">The MantisBT Manual (v1.2.x).</a></li>
<li><a href="/manual/">The MantisBT Manual (up to v1.1.x).</a></li>
<li><a href="/wiki/">The MantisBT Wiki</a> contains a lot of valuable MantisBT knowledge.</li>
<li>See our <a href="/testimonials.php">User testimonials</a> to find out what users have to say about MantisBT.</li>
<li>See our <a href="/directory.php">User directory</a> for some sample companies / projects that use MantisBT.</li>
Expand Down
2 changes: 1 addition & 1 deletion requirements.php
Expand Up @@ -4,7 +4,7 @@
include( "top.php" );
?>

<h4>Requirements</h3>
<h3>Requirements</h3>

<p>MantisBT runs on Windows, MacOS, OS/2, Linux, Solaris, the BSDs, and just about anything that supports the required server software.</p>
<p>MantisBT has very modest software and hardware requirements. You need a computer to run the server on along with the server software. All of the required software is free for commercial or non-commercial use.</p>
Expand Down

0 comments on commit 2bd701e

Please sign in to comment.