Skip to content

Commit

Permalink
fix invalid html (extra ") and suppress html validation errors for mi…
Browse files Browse the repository at this point in the history
…ssing alt tags.
  • Loading branch information
mantis committed Apr 13, 2009
1 parent a982f75 commit 8b21ab5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions summary_graph_imp_category.php
Expand Up @@ -55,12 +55,12 @@
</tr>
<tr valign="top">
<td width='100%'>
<center><img src="summary_graph_bycategory.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_bycategory.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td align="center">
<center><img src="summary_graph_bycategory_pct.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_bycategory_pct.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
</table>
Expand Down
6 changes: 3 additions & 3 deletions summary_graph_imp_priority.php
Expand Up @@ -55,17 +55,17 @@
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_bypriority.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_bypriority.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_bypriority_pct.php?width=<?php echo $t_graph_width?>" border="0"" /></center>
<center><img src="summary_graph_bypriority_pct.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_bypriority_mix.php?width=<?php echo $t_graph_width?>" border="0"/></center>
<center><img src="summary_graph_bypriority_mix.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
</table>
Expand Down
6 changes: 3 additions & 3 deletions summary_graph_imp_resolution.php
Expand Up @@ -54,17 +54,17 @@
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byresolution.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byresolution.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byresolution_pct.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byresolution_pct.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byresolution_mix.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byresolution_mix.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
</table>
Expand Down
6 changes: 3 additions & 3 deletions summary_graph_imp_severity.php
Expand Up @@ -52,17 +52,17 @@
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byseverity.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byseverity.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byseverity_pct.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byseverity_pct.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_byseverity_mix.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_byseverity_mix.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions summary_graph_imp_status.php
Expand Up @@ -52,12 +52,12 @@
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_bystatus.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_bystatus.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
<tr valign="top">
<td>
<center><img src="summary_graph_bystatus_pct.php?width=<?php echo $t_graph_width?>" border="0" /></center>
<center><img src="summary_graph_bystatus_pct.php?width=<?php echo $t_graph_width?>" border="0" alt="" /></center>
</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion summary_jpgraph_page.php
Expand Up @@ -57,7 +57,7 @@
print( "<tr valign=\"top\">\n" );
}
echo '<td width="50%" align="center">';
printf("<img src=\"%s.php?width=%d\" border=\"0\" />", $t_graphs[$t_pos], $t_graph_width );
printf("<img src=\"%s.php?width=%d\" border=\"0\" alt=\"\" />", $t_graphs[$t_pos], $t_graph_width );
echo '</td>';
if ( ( $t_wide - 1 ) == ( $t_pos % $t_wide ) ) {
print( "</tr>\n" );
Expand Down

0 comments on commit 8b21ab5

Please sign in to comment.