From acdf6393e7c616e8a02280f0f73a775b3f8effb4 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 17 Nov 2009 23:33:14 +0100 Subject: [PATCH] Always uppercase access key in the description title. --- framework/Core/lib/Horde.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index f8b7f9bda..6ae86f85c 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -1985,7 +1985,7 @@ HTML; $ak = self::getAccessKey($label, $nocheck); $attributes = 'title="' . self::stripAccessKey($label); if (!empty($ak)) { - $attributes .= sprintf(_(" (Accesskey %s)"), $ak); + $attributes .= sprintf(_(" (Accesskey %s)"), strtoupper($ak)); $attributes .= '" accesskey="' . $ak; } -- 2.11.0