Revision 56c6b1cb
Added by k-paulius over 9 years ago
src/usr/local/www/system_camanager.php | ||
---|---|---|
72 | 72 |
$ca_keylens = array("512", "1024", "2048", "4096"); |
73 | 73 |
$openssl_digest_algs = array("sha1", "sha224", "sha256", "sha384", "sha512"); |
74 | 74 |
|
75 |
$pgtitle = array(gettext("System"), gettext("Certificate Manager"), gettext("CAs")); |
|
76 |
|
|
77 | 75 |
if (is_numericint($_GET['id'])) { |
78 | 76 |
$id = $_GET['id']; |
79 | 77 |
} |
... | ... | |
350 | 348 |
} |
351 | 349 |
} |
352 | 350 |
|
351 |
$pgtitle = array(gettext("System"), gettext("Certificate Manager"), gettext("CAs")); |
|
352 |
|
|
353 |
if ($act == "new" || $act == "edit" || $act == gettext("Save") || $input_errors) { |
|
354 |
$pgtitle[] = gettext('Edit'); |
|
355 |
} |
|
353 | 356 |
include("head.inc"); |
354 | 357 |
|
355 | 358 |
if ($input_errors) { |
Also available in: Unified diff
Indicate in the breadcrumb if we are editing list item.