Skip to content

Commit b538a06

Browse files
committedNov 8, 2013
another html,js cleanup
1 parent ac1a2d4 commit b538a06

File tree

99 files changed

+383
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+383
-372
lines changed
 

‎apache/allmanual_form.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ print "<form action=allmanual_form.cgi>\n";
1515
print "<input type=submit value='$text{'manual_file'}'>\n";
1616
print "<select name=file>\n";
1717
foreach $f (@files) {
18-
printf "<option %s>%s\n",
18+
printf "<option %s>%s</option>\n",
1919
$f eq $in{'file'} ? 'selected' : '', $f;
2020
$found++ if ($f eq $in{'file'});
2121
}

‎apache/autoindex.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ sub edit_AddIcon_AddIconByType_AddIconByEncoding
2929
$rv .="<td><input name=AddIcon_alt_$i size=10 value=\"$alt\"></td>\n";
3030
$rv .="<td><select name=AddIcon_mode_$i>\n";
3131
for($j=0; $j<@AddIcon_descs; $j++) {
32-
$rv .= sprintf "<option value=$j %s>%s\n",
32+
$rv .= sprintf "<option value=$j %s>%s</option>\n",
3333
$mode == $j ? "selected" : "", $AddIcon_descs[$j];
3434
}
3535
$rv .="</select></td>\n";
@@ -89,7 +89,7 @@ sub edit_AddAlt_AddAltByType_AddAltByEncoding
8989
$rv .="<td><input name=AddAlt_alt_$i size=20 value=\"$alt\"></td>\n";
9090
$rv .="<td><select name=AddAlt_mode_$i>\n";
9191
for($j=0; $j<@AddAlt_descs; $j++) {
92-
$rv .= sprintf "<option value=$j %s>%s\n",
92+
$rv .= sprintf "<option value=$j %s>%s</option>\n",
9393
$mode == $j ? "selected" : "", $AddAlt_descs[$j];
9494
}
9595
$rv .="</select></td>\n";

0 commit comments

Comments
 (0)
Please sign in to comment.