diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-01-14 23:37:06 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-01-14 23:37:06 +0100 |
commit | c8f67dd1a4f247219fe248bfa1c3d79c3f98a998 (patch) | |
tree | 4765158273632e18bd0a166f5be043b955c244b3 | |
parent | 7ef6c9da437b504f949dc3d7d8c05f8abe36baae (diff) |
Fix casing for HMAC-SHA1.
-rw-r--r-- | actions/showapplication.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actions/showapplication.php b/actions/showapplication.php index 049206375..a6ff425c7 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -265,7 +265,7 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementEnd('dl'); $this->element('p', 'note', - _('Note: We support hmac-sha1 signatures. We do not support the plaintext signature method.')); + _('Note: We support HMAC-SHA1 signatures. We do not support the plaintext signature method.')); $this->elementEnd('div'); $this->elementStart('p', array('id' => 'application_action')); @@ -325,4 +325,3 @@ class ShowApplicationAction extends OwnerDesignAction } } - |