From a888cd4aa6696518e087b1983ef2978149e54107 Mon Sep 17 00:00:00 2001 From: John Crisp Date: Sun, 7 Mar 2021 19:17:44 +0100 Subject: [PATCH] Fix undefined constant --- ca/manage_certs.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ca/manage_certs.php b/ca/manage_certs.php index 990cd10..9d81a56 100644 --- a/ca/manage_certs.php +++ b/ca/manage_certs.php @@ -393,26 +393,26 @@ switch ($stage) { foreach ($db as $rec) { print ' - ' .$rec[status].' + ' . $rec['status'] . ' '.$rec['issued'].' '.$rec['expires'].' - '.$rec['common_name'].' + ' . $rec['common_name'] . ' ' . htvar($rec['email']) . ' - '.htvar($rec['organization']).' - '.htvar($rec['unit']).' - '.htvar($rec['locality']).' - '. + ' . htvar($rec['organization']) . ' + ' . htvar($rec['unit']) . ' + ' . htvar($rec['locality']) . ' + '. 'Display'; if ($rec['status'] == 'Valid') { print ' - '. + ' . 'Download - '. + ' . 'Revoke'; } print ' - '. + ' . 'Renew '; }