diff options
author | Michael Tänzer <neo@nhng.de> | 2014-04-11 23:14:33 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-04-11 23:14:33 +0200 |
commit | 3a6984a0d24c60cd0ea94158ccdffe8c93951aea (patch) | |
tree | 1202655bf1a6f7ed10889411affe5d205b39a44e /pages/account | |
parent | edc41777c1aa8f46e827e6b42664baab0a129973 (diff) | |
download | cacert-devel-3a6984a0d24c60cd0ea94158ccdffe8c93951aea.tar.gz cacert-devel-3a6984a0d24c60cd0ea94158ccdffe8c93951aea.tar.xz cacert-devel-3a6984a0d24c60cd0ea94158ccdffe8c93951aea.zip |
bug 1138: Typo
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/59.php | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/pages/account/59.php b/pages/account/59.php index 3a460ab..feb7d26 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -161,7 +161,7 @@ if (mysql_num_rows($dres) > 0) { } else { ?> <tr> - <td colspan="3" ><?=_('no entry avialable')?></td> + <td colspan="3" ><?=_('no entry available')?></td> </tr> <? } @@ -187,7 +187,7 @@ if(mysql_num_rows($dres) > 0) { } else { ?> <tr> - <td colspan="3" ><?=_('no entry avialable')?></td> + <td colspan="3" ><?=_('no entry available')?></td> </tr> <? } @@ -196,6 +196,7 @@ if(mysql_num_rows($dres) > 0) { <br/> <? +// Trainings $dres = get_training_results($userid); ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> @@ -210,12 +211,18 @@ $dres = get_training_results($userid); output_log_training($drow); } }ELSE{ - ?><td colspan="3" ><?=_('no entry avialable')?></td><? - }?> + ?> + <tr> + <td colspan="3" ><?=_('no entry available')?></td> + </tr> + <? +} +?> </table> <br/> <? +// User Agreements $dres = get_user_agreements($userid); ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> @@ -230,7 +237,7 @@ $dres = get_user_agreements($userid); output_log_agreement($drow); } }ELSE{ - ?><td colspan="4" ><?=_('no entry avialable')?></td><? + ?><td colspan="4" ><?=_('no entry available')?></td><? }?> </table> <br/> @@ -254,7 +261,7 @@ if (1==$support) { output_client_cert($drow,$support); } }ELSE{ - ?><td colspan="<?=$colspan?>" ><?=_('no entry avialable')?></td><? + ?><td colspan="<?=$colspan?>" ><?=_('no entry available')?></td><? }?> </table> <br/> @@ -278,7 +285,7 @@ if (1 == $support) { output_server_certs($drow,$support); } }ELSE{ - ?><td colspan="<?=$colspan?>" ><?=_('no entry avialable')?></td><? + ?><td colspan="<?=$colspan?>" ><?=_('no entry available')?></td><? }?> </table> <br/> @@ -302,7 +309,7 @@ if (1 == $support) { output_gpg_certs($drow,$support); } }ELSE{ - ?><td colspan="<?=$colspan?>" ><?=_('no entry avialable')?></td><? + ?><td colspan="<?=$colspan?>" ><?=_('no entry available')?></td><? }?> </table> <br/> @@ -333,7 +340,7 @@ if (1 == $support) { output_log_se($drow,$support); } }ELSE{ - ?><td colspan="<?=$colspan?>" ><?=_('no entry avialable')?></td><? + ?><td colspan="<?=$colspan?>" ><?=_('no entry available')?></td><? } if ($support==1) { ?><td colspan="<?=$colspan?>" ><a href="account.php?id=43&userid=<?= $userid ?>"><?= _('Back to previous page.')?></a></td><? |