Skip to content

Commit c94d4dc

Browse files
committedApr 25, 2012
Fix #13691: misspelled XHTML in admin/system_utils.php
1 parent b55ecbb commit c94d4dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎admin/system_utils.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<br /><br />
4545

4646
<table width="80%" bgcolor="#222222" cellpadding="10" cellspacing="1">
47-
<tr><td bgcolor=\"#e8e8e8\" colspan=\"2\"><span class=\"title\">Upgrade Utilities</span></td></tr>
47+
<tr><td bgcolor="#e8e8e8" colspan="2"><span class="title">Upgrade Utilities</span></td></tr>
4848

4949
<!-- # Headings -->
5050
<tr bgcolor="#ffffff"><th width="70%">Description</th><th width="30%">Execute</th></tr>
@@ -68,7 +68,7 @@
6868
<?php
6969
$t_custom_ids = custom_field_get_ids();
7070
foreach( $t_custom_ids as $t_id ) {
71-
printf( "<OPTION VALUE=\"%d\">%s", $t_id, custom_field_get_field( $t_id, 'name' ) );
71+
printf( "<OPTION VALUE=\"%d\">%s</OPTION>", $t_id, custom_field_get_field( $t_id, 'name' ) );
7272
}
7373
?>
7474
</SELECT> to
@@ -80,7 +80,7 @@
8080
'fixed_in_version',
8181
);
8282
foreach( $t_dest_ids as $t_id ) {
83-
printf( "<OPTION VALUE=\"%s\">%s", $t_id, $t_id );
83+
printf( "<OPTION VALUE=\"%s\">%s</OPTION>", $t_id, $t_id );
8484
}
8585
?>
8686
</SELECT>

0 commit comments

Comments
 (0)
Please sign in to comment.