mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-20 03:16:12 +00:00
Make "src" the implicit "/usr/local" so that nobody can sneak in weird files in the base file system or potentially overwrite them. This is the last time, I swear... :)
9 lines
481 B
PHP
9 lines
481 B
PHP
<?php
|
|
$active_tab = isset($active_tab) ? $active_tab : $_SERVER['PHP_SELF'];
|
|
|
|
$tab_array = array();
|
|
$tab_array[] = array(gettext("CAs"), $active_tab == "/system_camanager.php", "system_camanager.php");
|
|
$tab_array[] = array(gettext("Certificates"), $active_tab == "/system_certmanager.php", "system_certmanager.php");
|
|
$tab_array[] = array(gettext("Certificate Revocation"), $active_tab == "/system_crlmanager.php", "system_crlmanager.php");
|
|
display_top_tabs($tab_array);
|
|
?>
|