Fixed OpenPGP naming

pull/1/head
root 16 years ago
parent bf30770d06
commit f88f50a93c

@ -17,7 +17,7 @@
*/
include_once("../includes/shutdown.php");
?>
<p><?=_("Paste your GPG key below...")?></p>
<p><?=_("Paste your OpenPGP key below...")?></p>
<form method="post" action="gpg.php">
<textarea name="CSR" cols="80" rows="15"><?=strip_tags($_POST['CSR'])?></textarea><br>
<input type="submit" name="process" value="<?=_("Submit")?>">

@ -17,7 +17,7 @@
*/ ?>
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
<tr>
<td colspan="5" class="title"><?=_("Client Certificates")?></td>
<td colspan="5" class="title"><?=_("OpenPGP Keys")?></td>
</tr>
<tr>
<td class="DataTD"><?=_("Status")?></td>
@ -37,7 +37,7 @@
{
?>
<tr>
<td colspan="5" class="DataTD"><?=_("No PGP/GPG certificates are currently listed.")?></td>
<td colspan="5" class="DataTD"><?=_("No OpenPGP keys are currently listed.")?></td>
</tr>
<? } else {
while($row = mysql_fetch_assoc($res))

@ -21,13 +21,13 @@
$res = mysql_query($query);
if(mysql_num_rows($res) <= 0)
{
echo _("No such PGP/GPG certificates attached to your account.");
echo _("No such OpenPGP key attached to your account.");
showfooter();
exit;
}
$row = mysql_fetch_assoc($res);
?>
<h3><?=_("Below is your PGP/GPG Certificate")?></h3>
<h3><?=_("Below is your OpenPGP key")?></h3>
<pre>
<? readfile($row[crt]); ?>
</pre>

Loading…
Cancel
Save