diff options
author | Lars Hjemli | 2007-11-11 13:04:28 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-11-11 13:04:28 +0100 |
commit | 2915483ef6c9c29ac1493e6945688bb62f7825b4 (patch) | |
tree | 3ee4afec27ec8cb0ad5e10008f3bd8c994747c39 /html.c | |
parent | b4649fc90597910c89c3f37a6aec9af54d9f416b (diff) | |
download | cgit-2915483ef6c9c29ac1493e6945688bb62f7825b4.tar.gz cgit-2915483ef6c9c29ac1493e6945688bb62f7825b4.tar.bz2 cgit-2915483ef6c9c29ac1493e6945688bb62f7825b4.zip |
Fix html error detected by test-suite
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ void html_option(char *value, char *text, char *selected_value) | |||
132 | html_attr(value); | 132 | html_attr(value); |
133 | html("'"); | 133 | html("'"); |
134 | if (selected_value && !strcmp(selected_value, value)) | 134 | if (selected_value && !strcmp(selected_value, value)) |
135 | html(" selected"); | 135 | html(" selected='selected'"); |
136 | html(">"); | 136 | html(">"); |
137 | html_txt(text); | 137 | html_txt(text); |
138 | html("</option>\n"); | 138 | html("</option>\n"); |