From c852426bd4c2dcce88c581735863603ed4c9b556 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Wed, 07 Oct 2015 13:54:08 -0400 Subject: [PATCH] Enigma: Display all usage flags of the subkey --- plugins/enigma/lib/enigma_ui.php | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/enigma/lib/enigma_ui.php b/plugins/enigma/lib/enigma_ui.php index e596fde..132b49b 100644 --- a/plugins/enigma/lib/enigma_ui.php +++ b/plugins/enigma/lib/enigma_ui.php @@ -398,10 +398,10 @@ $now = time(); $date_format = $this->rc->config->get('date_format', 'Y-m-d'); $usage_map = array( - enigma_key::CAN_ENCRYPT => $this->enigma->gettext('typeencrypt'), - enigma_key::CAN_SIGN => $this->enigma->gettext('typesign'), - enigma_key::CAN_CERTIFY => $this->enigma->gettext('typecert'), - enigma_key::CAN_AUTH => $this->enigma->gettext('typeauth'), + enigma_key::CAN_ENCRYPT => $this->enigma->gettext('typeencrypt'), + enigma_key::CAN_SIGN => $this->enigma->gettext('typesign'), + enigma_key::CAN_CERTIFY => $this->enigma->gettext('typecert'), + enigma_key::CAN_AUTHENTICATE => $this->enigma->gettext('typeauth'), ); foreach ($this->data->subkeys as $subkey) { -- Gitblit v1.9.1