Replaced all short tags

This commit is contained in:
Kyle Johnson
2013-07-17 19:25:45 +00:00
parent 77a9267f7b
commit 337a0f1d39

View File

@@ -20,12 +20,12 @@ case 'display_root':
?> ?>
<center><h2>Root Certificate (PEM Encoded)</h2></center> <center><h2>Root Certificate (PEM Encoded)</h2></center>
<p> <p>
<pre><?= CA_get_root_pem() ?></pre> <pre><?php echo CA_get_root_pem() ?></pre>
<p> <p>
<form action=<?=$PHP_SELF?> method=post> <form action=<?php echo $PHP_SELF?> method=post>
<input type=submit name=submit value="Back to Menu"> <input type=submit name=submit value="Back to Menu">
</form> </form>
<? <?php
break; break;
case 'dl_crl': case 'dl_crl':
@@ -46,26 +46,26 @@ default:
<td>Find a digital certificate to download and install in your e-mail or browser application.</td></tr> <td>Find a digital certificate to download and install in your e-mail or browser application.</td></tr>
<tr><td style="text-align: center; vertical-align: middle; font-weight: bold;"> <tr><td style="text-align: center; vertical-align: middle; font-weight: bold;">
<a href=<?=$PHP_SELF?>?stage=dl_root>Download Our Root Certificate</a></td> <a href=<?php echo $PHP_SELF?>?stage=dl_root>Download Our Root Certificate</a></td>
<td>You must install our "Root" certificate before you can use any of the <td>You must install our "Root" certificate before you can use any of the
certificates issued here. <a href=help.php target=_help>Read the online help</a> certificates issued here. <a href=help.php target=_help>Read the online help</a>
to learn more about this.</td></tr> to learn more about this.</td></tr>
<tr><td style="text-align: center; vertical-align: middle; font-weight: bold;"> <tr><td style="text-align: center; vertical-align: middle; font-weight: bold;">
<a href=<?=$PHP_SELF?>?stage=display_root>Display Our Root Certificate (PEM Encoded)</a></td> <a href=<?php echo $PHP_SELF?>?stage=display_root>Display Our Root Certificate (PEM Encoded)</a></td>
<td>This option provides the "Root" certificate PEM encoded text for advanced users <td>This option provides the "Root" certificate PEM encoded text for advanced users
to manually install via copy and paste. <a href=help.php target=_help>Read the online help</a> to manually install via copy and paste. <a href=help.php target=_help>Read the online help</a>
to learn more about this.</td></tr> to learn more about this.</td></tr>
<tr><td style="text-align: center; vertical-align: middle; font-weight: bold;"> <tr><td style="text-align: center; vertical-align: middle; font-weight: bold;">
<a href=<?=$PHP_SELF?>?stage=dl_crl>Download Our Certificate Revocation List</a></td> <a href=<?php echo $PHP_SELF?>?stage=dl_crl>Download Our Certificate Revocation List</a></td>
<td>The official list of certificates revoked by this site. Installation and use of <td>The official list of certificates revoked by this site. Installation and use of
this list is optional. Some e-mail programs will reference this list automagically. </td></tr> this list is optional. Some e-mail programs will reference this list automagically. </td></tr>
</table> </table>
</center> </center>
<br><br> <br><br>
<? <?php
printFooter(); printFooter();
} }