diff options
author | root <root@cacert1.it-sls.de> | 2012-05-09 01:03:48 +0200 |
---|---|---|
committer | root <root@cacert1.it-sls.de> | 2012-05-09 01:03:48 +0200 |
commit | 08d101d98c1d6c073790c12c2bc48f33a57a19c0 (patch) | |
tree | 0b22d4355df961787137b711919963a4e3cf3d9f | |
parent | 2be71dbb4ab3bff875de731d4bc190c00d63515d (diff) | |
download | cacert-devel-08d101d98c1d6c073790c12c2bc48f33a57a19c0.tar.gz cacert-devel-08d101d98c1d6c073790c12c2bc48f33a57a19c0.tar.xz cacert-devel-08d101d98c1d6c073790c12c2bc48f33a57a19c0.zip |
bug-1023 fixed two typos
-rw-r--r-- | includes/wot.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/wot.inc.php b/includes/wot.inc.php index 022bcbd..2bb5553 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -573,7 +573,7 @@ function AssureBoxLine($type,$text,$checked) { ?> <tr> - <td class="DataTD"><input type="checkbox" name="<?=$type?>" <?=$checked?"checked":""?></td> + <td class="DataTD"><input type="checkbox" name="<?=$type?>" <?=$checked?"checked":""?>></td> <td class="DataTD"><?=$text?></td> </tr> <? @@ -590,7 +590,7 @@ function AssureMethodLine($text,$methods,$remark) <select name="method"> <? foreach($methods as $val) { ?> - <option value="<?=$val?>" <?=$val?></option> + <option value="<?=$val?>"> <?=$val?></option> <? } ?> </select> |