diff options
author | INOPIAE <inopiae@cacert.org> | 2013-05-01 22:40:00 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-05-01 22:40:00 +0200 |
commit | a8fa9c12a6001ff97cfefced3a68b0f788a02b65 (patch) | |
tree | 41b58d2b67b95d0dfaf9deb465ff21c82999459c /pages/account | |
parent | 494eb5923b8a682e2de786c284344b504211da8d (diff) | |
download | cacert-devel-a8fa9c12a6001ff97cfefced3a68b0f788a02b65.tar.gz cacert-devel-a8fa9c12a6001ff97cfefced3a68b0f788a02b65.tar.xz cacert-devel-a8fa9c12a6001ff97cfefced3a68b0f788a02b65.zip |
bug 782: fixed typo
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/3.php | 8 | ||||
-rw-r--r-- | pages/account/5.php | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/pages/account/3.php b/pages/account/3.php index 2726952..b92f4fa 100644 --- a/pages/account/3.php +++ b/pages/account/3.php @@ -44,7 +44,7 @@ <td class="DataTD"><input type="checkbox" name="addid[]" value="<?=intval($row['id'])?>"></td> <td class="DataTD"><?=sanitizeHTML($row['email'])?></td> </tr> -<? } +<? } if($_SESSION['profile']['points'] >= 50) { $fname = $_SESSION['profile']['fname']; @@ -67,7 +67,7 @@ if($_SESSION['profile']['points'] >= 50) <? if($fname && $mname && $lname && $suffix) { ?><input type="radio" name="incname" value="4"> <?=_("Include")?> '<?=$fname." ".$mname." ".$lname." ".$suffix?>'<br><? } ?> </td> </tr> -<? } ?> +<? } ?> <? if($_SESSION['profile']['points'] >= 100 && $_SESSION['profile']['codesign'] > 0) { ?> <tr> <td class="DataTD" align="left"> @@ -86,8 +86,8 @@ if($_SESSION['profile']['points'] >= 50) </tr> <tr> <td class="DataTD" colspan="2" align="left"> - <?=_("Optional comment, only used in the certifictate overview")?><br> - <input type="text" name="description" maxlength="100" size=100> + <?=_("Optional comment, only used in the certifictate overview max. 100 characters")?><br> + <input type="text" name="description" maxlength="100" size="100"> </td> </tr> diff --git a/pages/account/5.php b/pages/account/5.php index 7ef8933..ab7a8c9 100644 --- a/pages/account/5.php +++ b/pages/account/5.php @@ -92,10 +92,10 @@ <td class="DataTD"><?=$row['expires']?></td> <td class="DataTD"> <input type="checkbox" name="disablelogin_<?=$row['id']?>" value="1" <?=$row['disablelogin']?"":"checked='checked'"?>/> - <input type="hidden" name="cert_<?=$row['id']?>" value="1"/> + <input type="hidden" name="cert_<?=$row['id']?>" value="1" /> </td> - <td class="DataTD"><input name="comment_<?=$row['id']?>" type="text"><?=htmlspecialchars($row['description'])?></input></td> - <td><input type="checkbox" name="check_comment_<?=$row['id']?>" value="0"/></td> + <td class="DataTD"><input name="comment_<?=$row['id']?>" type="text" value="<?=htmlspecialchars($row['description'])?>" /></td> + <td class="DataTD"><input type="checkbox" name="check_comment_<?=$row['id']?>" /></td> </tr> <? } ?> <tr> |