Policy list added
This commit is contained in:
parent
79129197a9
commit
62ef6a37bb
1 changed files with 22 additions and 0 deletions
22
www/policy/index.php
Normal file
22
www/policy/index.php
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<?php
|
||||||
|
loadem("index");
|
||||||
|
showheader(_("CAcert - Policies"));
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1>CAcert Policies</h1>
|
||||||
|
<ul>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
foreach (glob("*.php") as $filename)
|
||||||
|
{
|
||||||
|
if($filename != "index.php")
|
||||||
|
{
|
||||||
|
echo "<li><a href='$filename'>$filename</a></li>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
?>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue